-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
91 lines (81 loc) · 1.47 KB
/
Copy path.gitignore
File metadata and controls
91 lines (81 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Environment — repo is PUBLIC, never commit keys
.env
.env.local
.env.*.local
*.pem
# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
.venv/
venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.ipynb_checkpoints/
# Node / Next.js
node_modules/
.next/
out/
dist/
*.tsbuildinfo
npm-debug.log*
# RAW datasets at repo root — ANCHORED. (The old unanchored `data/` silently
# ignored the pinn/data python package for five commits; /data/ fixes that.)
/data/
/datasets/
/raw/
*.zip
*.tar
*.tar.gz
*.7z
*.parquet
*.h5
*.hdf5
*.mat
*.npy
*.npz
# Model / artifact binaries (targeted demo exceptions below)
*.pt
*.pth
*.ckpt
*.onnx
*.pkl
*.joblib
mlruns/
wandb/
# pinn/data: the PYTHON PACKAGE (loaders) is tracked; bulk data is not.
pinn/data/**
!pinn/data/*.py
!pinn/data/.gitkeep
!pinn/data/README.md
# Demo stand-in datasets ARE committed (public benchmarks, fresh clone must run)
!pinn/data/train_FD001.txt
!pinn/data/test_FD001.txt
!pinn/data/RUL_FD001.txt
!pinn/data/ai4i2020.csv
!pinn/data/synthetic_rc07_scenarios.csv
# Trained demo weights: committed ON PURPOSE (team decision — ~0.6 MB, a fresh
# clone must run the demo without retraining)
!pinn/models/mh_pinn_v2.pt
# Runtime state
*.db
*.db-journal
# Local case material / scratch (not for the public repo)
files (1)/
files (1).zip
WhatsApp*
*.jpeg
rapport socio-economique.docx
Michelin_Roanne_Site_Selection_Dossier.pdf
# OS / editor
.DS_Store
Thumbs.db
desktop.ini
.idea/
.vscode/
*.swp
# Local Claude Code settings
.claude/