/ .gitignore
.gitignore
 1  # Python
 2  *.pyc
 3  __pycache__/
 4  *.pyo
 5  *.pyd
 6  .Python
 7  env/
 8  venv/
 9  *.egg-info/
10  
11  # Jupyter Notebooks
12  *.ipynb_checkpoints/
13  
14  # Data and models (AI/CV)
15  *.h5
16  *.pth
17  *.pt
18  # Ignore everything in the data/inference directory and its subdirectories
19  
20  # Explicitly include all files in the data/examples directory and its subdirectories
21  !data/examples/*
22  
23  *.pth
24  *.pt
25  # Ignore everything in the data/inference directory and its subdirectories
26  
27  
28  # Explicitly include all files in the data/examples directory and its subdirectories
29  !data/examples/*
30  
31  # Logs and temp files
32  *.log
33  *.tmp
34  
35  # IDE and OS files
36  .idea/
37  .vscode/
38  *.swp
39  .DS_Store