glenn-jocher
commited on
Commit
•
6c554b7
1
Parent(s):
a144536
Add TF and TFLite models to `.gitignore` (#4747)
Browse files- .gitignore +4 -0
.gitignore
CHANGED
@@ -45,9 +45,13 @@ VOC/
|
|
45 |
# Neural Network weights -----------------------------------------------------------------------------------------------
|
46 |
*.weights
|
47 |
*.pt
|
|
|
48 |
*.onnx
|
49 |
*.mlmodel
|
50 |
*.torchscript
|
|
|
|
|
|
|
51 |
darknet53.conv.74
|
52 |
yolov3-tiny.conv.15
|
53 |
|
|
|
45 |
# Neural Network weights -----------------------------------------------------------------------------------------------
|
46 |
*.weights
|
47 |
*.pt
|
48 |
+
*.pb
|
49 |
*.onnx
|
50 |
*.mlmodel
|
51 |
*.torchscript
|
52 |
+
*.tflite
|
53 |
+
*.h5
|
54 |
+
*_saved_model/
|
55 |
darknet53.conv.74
|
56 |
yolov3-tiny.conv.15
|
57 |
|