-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
92 lines (79 loc) · 1.39 KB
/
.gitignore
File metadata and controls
92 lines (79 loc) · 1.39 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
92
# Python artifacts
*.pyc
__pycache__/
*.py[cod]
*$py.class
*.so
# Model checkpoints and weights
*.pth
*.ckpt
*.weights
# C/C++ compiled files
*.cpp
*.o
# Data and features
LFB/*
LFB/*.json
LFB/*/*/video*.json
LFB/dataset_feature/*.pkl
LFB/dataset_feature/*/*.pkl
datasets/*/*.npy
datasets/*/labels/video_*_labels.npy
datasets/*/gt_remaining_time_*.json
datasets/cholec80/video_durations*.json
# External dependencies and datasets
external/*
external/*/*
external/epic-kitchens-55-annotations
external/epic-kitchens-100-annotations
external/rulstm
# Outputs and experiments
OUTPUTS/
OUTPUTS/expts/
OUTPUTS/expts/*.txt/local/logs/events.out.tfevents.*
OUTPUTS/expts/*/local/per_video_ep*.json
OUTPUTS/expts/*/local/*.npy
OUTPUTS/expts/*/local/*.png
OUTPUTS/expts/*/local/plots/*/rtd/*.png
OUTPUTS/expts/*.txt/local/plots/*/*/*.png
OUTPUTS/expts/*.txt/local/*/*.json
OUTPUTS/expts/*.txt/local/*/*.yaml
OUTPUTS/expts/*.txt/local/plots/*/*/*/*.png
OUTPUTS/expts/*.txt/local/*/*.npy
OUTPUTS/expts/*.txt/local/*/*/*.json
# R2A2 specific
R2A2/dataset/*
R2A2/expts/*
R2A2/outputs/*
# Hydra outputs
.hydra/
.hydra.orig/
multirun/
# Temporary and duplicate files
*copy*.py
*copy*.txt
*copy*.json
*_old.py
*_backup.py
*.tmp
*.bak
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Logs
*.log
logs/
# Jupyter Notebook
.ipynb_checkpoints/
*.ipynb
# Virtual environments
venv/
env/
ENV/
.venv/