Zengyf-CVer commited on
Commit
bead993
1 Parent(s): a79519c

app update

Browse files
Files changed (2) hide show
  1. .gitignore +64 -0
  2. requirements.txt +3 -0
.gitignore ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Gradio YOLOv5 Det
2
+ # 创建人:曾逸夫
3
+ # 项目地址:https://gitee.com/CV_Lab/gradio_yolov5_det
4
+
5
+ # 图片格式
6
+ *.jpg
7
+ *.jpeg
8
+ *.png
9
+ *.svg
10
+ *.gif
11
+
12
+ # 视频格式
13
+ *.mp4
14
+ *.avi
15
+ .ipynb_checkpoints
16
+ /__pycache__
17
+ */__pycache__
18
+
19
+ # 日志格式
20
+ *.log
21
+ *.data
22
+ *.txt
23
+
24
+ # 生成文件
25
+ *.pdf
26
+ *.xlsx
27
+ *.csv
28
+
29
+ # 参数文件
30
+ *.yaml
31
+ *.json
32
+
33
+ # 压缩文件格式
34
+ *.zip
35
+ *.tar
36
+ *.tar.gz
37
+ *.rar
38
+
39
+ # 字体格式
40
+ *.ttc
41
+ *.ttf
42
+ *.otf
43
+ *.pkl
44
+
45
+ # 模型文件
46
+ *.pt
47
+ *.db
48
+
49
+ /flagged
50
+ /run
51
+ !requirements.txt
52
+ !cls_name/*
53
+ !model_config/*
54
+ !img_examples/*
55
+ !video_examples/*
56
+
57
+ !requirements.txt
58
+ !.pre-commit-config.yaml
59
+
60
+ app.py
61
+ test.py
62
+ test*.py
63
+
64
+ model_download.py
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ pillow
2
+ wget
3
+ rich