-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.gitignore
More file actions
89 lines (80 loc) · 1.13 KB
/
.gitignore
File metadata and controls
89 lines (80 loc) · 1.13 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
# Python bytecode and test caches
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.mypy_cache/
.pyre/
.ruff_cache/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
coverage.xml
# Build and packaging artifacts
build/
dist/
*.egg-info/
.eggs/
*.egg
pip-wheel-metadata/
# Virtual environments and local interpreter state
.venv/
venv/
env/
ENV/
.python-version
# Local configuration and secrets
.env
.env.*
*.local
# IDE, editor, and OS files
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
.AppleDouble
.LSOverride
# Runtime data and generated experiment outputs
/dataset/
/Shuttlecock-Trajectory-Dataset.zip
outputs/
test_results/
runs/
logs/
wandb/
tensorboard/
mlruns/
pretrained_models/
trained_model_exports/
/model-v2.0.1-epoch30/
lightning_logs/
# Model checkpoints, exported weights, and accelerator artifacts
*.pt
*.pth
*.ckpt
*.safetensors
*.onnx
*.engine
*.trt
*.plan
*.torchscript
# Generated prediction and visualization media
*.mp4
*.avi
*.mov
*.mkv
*.m4v
*.webm
*.gif
# Generated tables and reports outside versioned paper assets
*.parquet
*.feather
*.sqlite
*.db
# Versioned training logs and evaluation artifacts
!model_results/
!model_results/**