Vladimir Iashin commited on
Commit
27ae7cb
·
1 Parent(s): 739db67

* added submodule WebsiteYOLO (back-end)

Browse files

* linked requirements.txt and app.py from the submodule
* added some basic info to readme

Files changed (5) hide show
  1. .gitmodules +3 -0
  2. README.md +19 -1
  3. WebsiteYOLO +1 -0
  4. app.py +1 -0
  5. requirements.txt +1 -0
.gitmodules ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ [submodule "WebsiteYOLO"]
2
+ path = WebsiteYOLO
3
+ url = https://github.com/v-iashin/WebsiteYOLO
README.md CHANGED
@@ -10,4 +10,22 @@ pinned: false
10
  license: mit
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  license: mit
11
  ---
12
 
13
+ This repository relies on the submodule (back-end)
14
+ [WebsiteYOLO](https://github.com/v-iashin/WebsiteYOLO).
15
+ HuggingFace Spaces requires a file with requirements as `requirements.txt`
16
+ and app code as `app.py` in the root directory.
17
+ To rely on the submodule, I linked `gradio_requirements.txt` and `gradio_app.py`
18
+ to `requirements.txt` and `app.py` respectively.
19
+
20
+
21
+ ## Requirements
22
+ ```yaml
23
+ matplotlib==3.7.1
24
+ torch==2.0.0
25
+ ```
26
+
27
+ More info:
28
+ * [Back-end code](https://github.com/v-iashin/WebsiteYOLO)
29
+ * [Submit an issue](https://github.com/v-iashin/WebsiteYOLO/issues)
30
+ * [Building it without Gradio](https://iashin.ai/how_did_you_build_your_detector)
31
+ * [Contact me](https://iashin.ai/)
WebsiteYOLO ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit bad1236af2ac8c53662bf5ff94cfc7f15d20fd3d
app.py ADDED
@@ -0,0 +1 @@
 
 
1
+ ./WebsiteYOLO/gradio_app.py
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ ./WebsiteYOLO/gradio_requirements.txt