-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
57 lines (45 loc) · 1.66 KB
/
.gitignore
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
# Ignore Python cache files
__pycache__/
*.pyc
*.pyo
*.pyd
/data/Model/
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Ignore macOS metadata files
.DS_Store
# Ignore temporary files created by editors and IDEs
*.swp # vi/vim temporary files
*.swo # vi/vim temporary files
.idea/ # IntelliJ IDEA project files
*.idea/ # IntelliJ IDEA project files
.vscode/ # Visual Studio Code workspace settings
# Ignore OS-specific files
Thumbs.db # Windows thumbnail cache
ehthumbs.db # Windows thumbnail cache
# Ignore logs and temporary files
*.log # Log files
*.tmp # Temporary files
*.bak # Backup files
*.~ # Temporary files with a tilde suffix
# Ignore files generated by Python tools
*.env # Virtual environment files
*.venv # Virtual environment files
pip-log.txt # pip log files
pip-delete-this-directory.txt
# Ignore files for package distribution
*.egg-info/ # Distribution metadata directory
build/ # Build directory
dist/ # Distribution directory
# Ignore specific output directories
results/ # Output files directory (custom for this project)
models/ # Saved models
figures/ # Plots and visualizations
metrics/ # Evaluation results
# Ignore environment-related files
.env # Environment variable files
.env.* # Any environment-related file
# Ignore notebook outputs (optional)
*.nbconvert.ipynb # Notebooks converted to other formats
#Ignore notebook backup
Backup/