-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
101 lines (86 loc) · 1.78 KB
/
Copy path.gitignore
File metadata and controls
101 lines (86 loc) · 1.78 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
93
94
95
96
97
98
99
100
101
#### PYTHON
# Python extra files - bytecode
__pycache__
*.pyc
# Jupyter temp files
.ipynb_checkpoints/
# to remove the coverage files
.coverage
# pytest cache
.pytest_cache/
# to remove the built distribution/editable install
*.egg-info
dist/
# used by tox with isolated build
build/
####
#### PROJECT SETTINGS
# VSCode settings
# NOTE: now that the project is becoming complex, it is better to save the
# settings
# as suggested in StackOverflow, it is better to save a default settings
# without the absolute paths and other information
# the final pattern to ignore nested folders
.vscode/**/*
# we still save these generic files
!.vscode/settings.json.default
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# dolphin folder settings
.directory
# Local History for Visual Studio Code
.history/
### VisualStudioCode Patch ###
# Ignore all local history of files
.history
.ionide
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode
### EMACS FILES
# this covers Emacs temporary files
.#*
# Spyder settings
.spyproject
####
#### JSONNET
# we don't want to save .json files from the main configs, however we want
# to save the configs from the experiments
papers/*/configs/**/*.json
####
#### TEMPORARY LOCAL TEST DATA
# Datasets
/cifar10
/mnist
/datasets
# data for testing
**/data
**/checkpoints
# PyTorch Lightning logs
**/lightning_logs
# custom model training
**/model_training*/
# DSE results
/*.csv
/results
notebooks/dsn2023_doctoralforum/results
scripts/results
scripts/configs/results
# Test Models
**/model_drafts
# Trained Models
/models
/trained_models
####
### CI/CD Actions Temporary Files ###
mkinit-*.log
### TEST FILES ###
.nox/*
.nox.pre-commit/*
.tox/*
.logs/*
enpheeph-*/
**/.mypy_cache
### FOSSIL REPO
*.fossil
*.fossil-journal