30 lines
328 B
Plaintext
30 lines
328 B
Plaintext
# Ignore pycache directory
|
|
__pycache__/
|
|
|
|
# Ignore virtual environment directory
|
|
.venv/
|
|
|
|
|
|
# Ignore models directory
|
|
models/
|
|
|
|
# Ignore model file
|
|
*.h5
|
|
*.keras
|
|
*.pth
|
|
|
|
checkpoints/
|
|
|
|
# Ignore plots directory
|
|
plots/
|
|
|
|
# Ignore plot file
|
|
*.png
|
|
*.jpg
|
|
|
|
# Ignore everything with delete_me in name
|
|
*delete_me*
|
|
|
|
# Ignore glove
|
|
*.zip
|
|
*glove*/ |