Skip to content

Commit 36914b9

Browse files
committed
initial commit
0 parents  commit 36914b9

File tree

7 files changed

+2079
-0
lines changed

7 files changed

+2079
-0
lines changed

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Ignore Python virtual environment
2+
venv/
3+
.venv/
4+
env/
5+
6+
# Ignore IDE-specific files
7+
.vscode/
8+
.idea/
9+
*.suo
10+
*.ntvs*
11+
*.njsproj
12+
*.sln
13+
*.swp
14+
15+
# Ignore compiled Python files
16+
__pycache__/
17+
*.pyc
18+
*.pyo
19+
*.pyd
20+
21+
# Ignore MLFlow artifacts
22+
mlruns/
23+
mlartifacts/
24+
25+
# Ignore dataset files (if applicable)
26+
data/
27+
*.csv
28+
*.json
29+
*.h5
30+
31+
# Ignore logs
32+
*.log
33+
logs/
34+
35+
# Ignore OS-specific files
36+
.DS_Store
37+
Thumbs.db
38+
39+
# Ignore Jupyter Notebook checkpoints
40+
.ipynb_checkpoints/
41+
42+
# Ignore model files (if not tracked)
43+
*.model
44+
*.caffemodel

Requird Packages.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
tensorflow
2+
numpy
3+
keras
4+
scipy
5+
matplotlib
6+
imutils
7+
opencv-python

Screenshot 2023-01-04 204152.png

15.7 KB
Loading

0 commit comments

Comments
 (0)