Diff of /.gitignore [000000] .. [0f1df3]

Switch to unified view

a b/.gitignore
1
#############################################
2
# self defined
3
###############
4
figs/
5
logs/
6
prompts/test/
7
logits/
8
performance/
9
ipynb4prepare/
10
datasets/tjh/processed/
11
datasets/tjh/raw/
12
datasets/mimic-iv/processed/
13
datasets/mimic-iv/raw/
14
config/config.py
15
*.csv
16
demo.ipynb
17
debug.py
18
debug.ipynb
19
prompt.txt
20
*.ipynb
21
#############################################
22
23
# Byte-compiled / optimized / DLL files
24
__pycache__/
25
*.py[cod]
26
*$py.class
27
28
# C extensions
29
*.so
30
31
# Distribution / packaging
32
.Python
33
build/
34
develop-eggs/
35
dist/
36
downloads/
37
eggs/
38
.eggs/
39
lib/
40
lib64/
41
parts/
42
sdist/
43
var/
44
wheels/
45
share/python-wheels/
46
*.egg-info/
47
.installed.cfg
48
*.egg
49
MANIFEST
50
51
# PyInstaller
52
#  Usually these files are written by a python script from a template
53
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
54
*.manifest
55
*.spec
56
57
# Installer logs
58
pip-log.txt
59
pip-delete-this-directory.txt
60
61
# Unit test / coverage reports
62
htmlcov/
63
.tox/
64
.nox/
65
.coverage
66
.coverage.*
67
.cache
68
nosetests.xml
69
coverage.xml
70
*.cover
71
*.py,cover
72
.hypothesis/
73
.pytest_cache/
74
cover/
75
76
# Translations
77
*.mo
78
*.pot
79
80
# Django stuff:
81
*.log
82
local_settings.py
83
db.sqlite3
84
db.sqlite3-journal
85
86
# Flask stuff:
87
instance/
88
.webassets-cache
89
90
# Scrapy stuff:
91
.scrapy
92
93
# Sphinx documentation
94
docs/_build/
95
96
# PyBuilder
97
.pybuilder/
98
target/
99
100
# Jupyter Notebook
101
.ipynb_checkpoints
102
103
# IPython
104
profile_default/
105
ipython_config.py
106
107
# pyenv
108
#   For a library or package, you might want to ignore these files since the code is
109
#   intended to run in multiple environments; otherwise, check them in:
110
# .python-version
111
112
# pipenv
113
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
114
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
115
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
116
#   install all needed dependencies.
117
#Pipfile.lock
118
119
# poetry
120
#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
121
#   This is especially recommended for binary packages to ensure reproducibility, and is more
122
#   commonly ignored for libraries.
123
#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
124
#poetry.lock
125
126
# pdm
127
#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
128
#pdm.lock
129
#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
130
#   in version control.
131
#   https://pdm.fming.dev/#use-with-ide
132
.pdm.toml
133
134
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
135
__pypackages__/
136
137
# Celery stuff
138
celerybeat-schedule
139
celerybeat.pid
140
141
# SageMath parsed files
142
*.sage.py
143
144
# Environments
145
.env
146
.venv
147
env/
148
venv/
149
ENV/
150
env.bak/
151
venv.bak/
152
153
# Spyder project settings
154
.spyderproject
155
.spyproject
156
157
# Rope project settings
158
.ropeproject
159
160
# mkdocs documentation
161
/site
162
163
# mypy
164
.mypy_cache/
165
.dmypy.json
166
dmypy.json
167
168
# Pyre type checker
169
.pyre/
170
171
# pytype static type analyzer
172
.pytype/
173
174
# Cython debug symbols
175
cython_debug/
176
177
# PyCharm
178
#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can
179
#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
180
#  and can be added to the global gitignore or merged into this file.  For a more nuclear
181
#  option (not recommended) you can uncomment the following to ignore the entire idea folder.
182
#.idea/