a | b/.gitignore | ||
---|---|---|---|
1 | # Ignore .pkl files |
||
2 | *.pkl |
||
3 | *.pem |
||
4 | |||
5 | # Ignore large files |
||
6 | # Adjust the file size limit as needed |
||
7 | *.{mp4,avi,mov,wmv,flv,mkv,gif,png,jpg,jpeg,zip,gz,bz2,7z,tar,xz,iso,dmg,img} |
||
8 | |||
9 | # Ignore AutoML-related files |
||
10 | # Adjust this section based on specific AutoML tools or file patterns |
||
11 | # For example, for Google AutoML Vision: |
||
12 | # *.csv |
||
13 | *.json |
||
14 | *.yaml |
||
15 | *.h5 |
||
16 | *.model |
||
17 | *.pb |
||
18 | *.tflite |
||
19 | *.tflite_quantized |
||
20 | *.lite |
||
21 | *.edgetpu.tflite |
||
22 | etc. |
||
23 | |||
24 | # Add more patterns as needed depending on the AutoML tool and file types used |
||
25 | # ignore .venv folder |
||
26 | .venv/ |
||
27 | # |
||
28 | |||
29 | 11-Docker/my_project |