-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
54 lines (45 loc) · 860 Bytes
/
.gitignore
File metadata and controls
54 lines (45 loc) · 860 Bytes
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
# R build artifacts
.Rproj.user/
.Rhistory
.RData
.Ruserdata
*.Rproj
*.tar.gz
*.zip
# Package build
/doc/
/Meta/
# man/ .Rd files ARE tracked — generated by roxygen2 and committed
# (man/figures/ always tracked too)
src/*.o
src/*.so
src/*.dll
# R check output
/check/
*.check/
*.Rcheck/
# ---- Large data & model files ----
# OSSL cached data (downloaded at runtime via ossl_download())
ossl_cache/
# Trained model weights (.h5 are large binary files)
# Remove the next line if you want to track your pre-trained models in Git LFS
models/**/*.h5
models/**/*_scaler.rds
models/**/*_scaler.json
models/**/*_metrics.json
# Backup models (not tracked)
backup_models/
# Test data
data test/
# ---- OS & IDE ----
.DS_Store
Thumbs.db
desktop.ini
*.swp
*.swo
# ---- OneDrive / cloud sync ----
*.lnk
~$*
# ---- Secrets / credentials ----
.Renviron
secrets.R