Tobias Nauen
commited on
Commit
·
a40eb22
1
Parent(s):
9cd2bbd
add gitignore
Browse files- .gitignore +204 -0
.gitignore
ADDED
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Created by .ignore support plugin (hsz.mobi)
|
2 |
+
### Python template
|
3 |
+
# Byte-compiled / optimized / DLL files
|
4 |
+
__pycache__/
|
5 |
+
*.py[cod]
|
6 |
+
*$py.class
|
7 |
+
|
8 |
+
# C extensions
|
9 |
+
*.so
|
10 |
+
|
11 |
+
# Distribution / packaging
|
12 |
+
.Python
|
13 |
+
env/
|
14 |
+
build/
|
15 |
+
develop-eggs/
|
16 |
+
dist/
|
17 |
+
downloads/
|
18 |
+
eggs/
|
19 |
+
.eggs/
|
20 |
+
lib/
|
21 |
+
lib64/
|
22 |
+
parts/
|
23 |
+
sdist/
|
24 |
+
var/
|
25 |
+
*.egg-info/
|
26 |
+
.installed.cfg
|
27 |
+
*.egg
|
28 |
+
|
29 |
+
# PyInstaller
|
30 |
+
# Usually these files are written by a python script from a template
|
31 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
32 |
+
*.manifest
|
33 |
+
*.spec
|
34 |
+
|
35 |
+
# Installer logs
|
36 |
+
pip-log.txt
|
37 |
+
pip-delete-this-directory.txt
|
38 |
+
|
39 |
+
# Unit test / coverage reports
|
40 |
+
htmlcov/
|
41 |
+
.tox/
|
42 |
+
.coverage
|
43 |
+
.coverage.*
|
44 |
+
.cache
|
45 |
+
nosetests.xml
|
46 |
+
coverage.xml
|
47 |
+
*,cover
|
48 |
+
.hypothesis/
|
49 |
+
|
50 |
+
# Translations
|
51 |
+
*.mo
|
52 |
+
*.pot
|
53 |
+
|
54 |
+
# Django stuff:
|
55 |
+
*.log
|
56 |
+
local_settings.py
|
57 |
+
|
58 |
+
# Flask stuff:
|
59 |
+
instance/
|
60 |
+
.webassets-cache
|
61 |
+
|
62 |
+
# Scrapy stuff:
|
63 |
+
.scrapy
|
64 |
+
|
65 |
+
# Sphinx documentation
|
66 |
+
docs/_build/
|
67 |
+
|
68 |
+
# PyBuilder
|
69 |
+
target/
|
70 |
+
|
71 |
+
# IPython Notebook
|
72 |
+
.ipynb_checkpoints
|
73 |
+
|
74 |
+
# pyenv
|
75 |
+
.python-version
|
76 |
+
|
77 |
+
# celery beat schedule file
|
78 |
+
celerybeat-schedule
|
79 |
+
|
80 |
+
# dotenv
|
81 |
+
.env
|
82 |
+
|
83 |
+
# virtualenv
|
84 |
+
venv/
|
85 |
+
ENV/
|
86 |
+
torch-2.5/
|
87 |
+
|
88 |
+
# Spyder project settings
|
89 |
+
.spyderproject
|
90 |
+
|
91 |
+
# Rope project settings
|
92 |
+
.ropeproject
|
93 |
+
### VirtualEnv template
|
94 |
+
# Virtualenv
|
95 |
+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
|
96 |
+
[Bb]in
|
97 |
+
[Ii]nclude
|
98 |
+
[Ll]ib
|
99 |
+
[Ll]ib64
|
100 |
+
[Ll]ocal
|
101 |
+
pyvenv.cfg
|
102 |
+
.venv
|
103 |
+
pip-selfcheck.json
|
104 |
+
|
105 |
+
### JetBrains template
|
106 |
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
107 |
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
108 |
+
|
109 |
+
# User-specific stuff
|
110 |
+
.idea/**/workspace.xml
|
111 |
+
.idea/**/tasks.xml
|
112 |
+
.idea/**/usage.statistics.xml
|
113 |
+
.idea/**/dictionaries
|
114 |
+
.idea/**/shelf
|
115 |
+
|
116 |
+
# AWS User-specific
|
117 |
+
.idea/**/aws.xml
|
118 |
+
|
119 |
+
# Generated files
|
120 |
+
.idea/**/contentModel.xml
|
121 |
+
|
122 |
+
# Sensitive or high-churn files
|
123 |
+
.idea/**/dataSources/
|
124 |
+
.idea/**/dataSources.ids
|
125 |
+
.idea/**/dataSources.local.xml
|
126 |
+
.idea/**/sqlDataSources.xml
|
127 |
+
.idea/**/dynamic.xml
|
128 |
+
.idea/**/uiDesigner.xml
|
129 |
+
.idea/**/dbnavigator.xml
|
130 |
+
|
131 |
+
# Gradle
|
132 |
+
.idea/**/gradle.xml
|
133 |
+
.idea/**/libraries
|
134 |
+
|
135 |
+
# Gradle and Maven with auto-import
|
136 |
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
137 |
+
# since they will be recreated, and may cause churn. Uncomment if using
|
138 |
+
# auto-import.
|
139 |
+
# .idea/artifacts
|
140 |
+
# .idea/compiler.xml
|
141 |
+
# .idea/jarRepositories.xml
|
142 |
+
# .idea/modules.xml
|
143 |
+
# .idea/*.iml
|
144 |
+
# .idea/modules
|
145 |
+
# *.iml
|
146 |
+
# *.ipr
|
147 |
+
|
148 |
+
# CMake
|
149 |
+
cmake-build-*/
|
150 |
+
|
151 |
+
# Mongo Explorer plugin
|
152 |
+
.idea/**/mongoSettings.xml
|
153 |
+
|
154 |
+
# File-based project format
|
155 |
+
*.iws
|
156 |
+
|
157 |
+
# IntelliJ
|
158 |
+
out/
|
159 |
+
|
160 |
+
# mpeltonen/sbt-idea plugin
|
161 |
+
.idea_modules/
|
162 |
+
|
163 |
+
# JIRA plugin
|
164 |
+
atlassian-ide-plugin.xml
|
165 |
+
|
166 |
+
# Cursive Clojure plugin
|
167 |
+
.idea/replstate.xml
|
168 |
+
|
169 |
+
# SonarLint plugin
|
170 |
+
.idea/sonarlint/
|
171 |
+
|
172 |
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
173 |
+
com_crashlytics_export_strings.xml
|
174 |
+
crashlytics.properties
|
175 |
+
crashlytics-build.properties
|
176 |
+
fabric.properties
|
177 |
+
|
178 |
+
# Editor-based Rest Client
|
179 |
+
.idea/httpRequests
|
180 |
+
|
181 |
+
# Android studio 3.1+ serialized cache file
|
182 |
+
.idea/caches/build_file_checksums.ser
|
183 |
+
|
184 |
+
# idea folder, uncomment if you don't need it
|
185 |
+
.idea
|
186 |
+
|
187 |
+
# code server folders
|
188 |
+
.code-server
|
189 |
+
|
190 |
+
# mlflow folder
|
191 |
+
mlruns
|
192 |
+
|
193 |
+
# runscripts
|
194 |
+
*.tmp
|
195 |
+
experiments/sbatch
|
196 |
+
|
197 |
+
data_tmp.json
|
198 |
+
evaluation/data/data_final.json
|
199 |
+
evaluation/figures
|
200 |
+
out_test
|
201 |
+
.vscode
|
202 |
+
|
203 |
+
.wandb.apikey
|
204 |
+
wandb/
|