File size: 578 Bytes
d068d1d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Python related
__pycache__/
*.py[cod]
*.pyo
*.egg-info/
*.egg
*.venv
*.virtualenv
*.pypirc

# IDEs and Editors
## Visual Studio Code
.vscode/
## PyCharm
.idea/
## Jupyter notebooks
.ipynb_checkpoints/

# Operating Systems
## macOS
.DS_Store
## Windows
Thumbs.db
ehthumbs.db
Desktop.ini
## Linux
*~

# TensorFlow specific (if you save models or have checkpoints)
*.h5
*.ckpt

# Other
# Directories or files for logs, databases, and datasets that you don't want to commit
logs/
datasets/
*.log
*.sqlite

# If you use virtual environments and you name them `env` or similar
env/