-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
35 lines (32 loc) · 833 Bytes
/
Copy path.gitignore
File metadata and controls
35 lines (32 loc) · 833 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
# ==========================================
# Python & Environment
# ==========================================
__pycache__/
*.py[cod]
*$py.class
.venv/
env/
venv/
.conda/
# ==========================================
# SLURM Cluster Output
# ==========================================
# Ignore all SLURM log files so they don't clutter the repo
slurm-*.out
slurm-*.err
# ==========================================
# Datasets & Generated Arrays
# ==========================================
# Do not track massive data files or temporary RL cache arrays
# Teammates should generate these locally or pull from a shared drive
*.hdf
*.h5
*.npy
data/processed/environments/
# ==========================================
# Jupyter Notebooks & IDEs
# ==========================================
.ipynb_checkpoints
.vscode/
.idea/
.DS_Store