Shue commited on
Commit
16bbeae
1 Parent(s): 421360e

added Animefy web app files.

Browse files
Files changed (2) hide show
  1. .gitattributes +3 -0
  2. README.md +35 -1
.gitattributes CHANGED
@@ -25,3 +25,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
25
  *.zip filter=lfs diff=lfs merge=lfs -text
26
  *.zstandard filter=lfs diff=lfs merge=lfs -text
27
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
25
  *.zip filter=lfs diff=lfs merge=lfs -text
26
  *.zstandard filter=lfs diff=lfs merge=lfs -text
27
  *tfevents* filter=lfs diff=lfs merge=lfs -text
28
+ models/Hayao/* filter=lfs diff=lfs merge=lfs -text
29
+ models/Paprika/* filter=lfs diff=lfs merge=lfs -text
30
+ models/Shinkai/* filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -9,5 +9,39 @@ app_file: app.py
9
  python_version: 3.6.0
10
  pinned: false
11
  ---
12
-
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  python_version: 3.6.0
10
  pinned: false
11
  ---
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
13
+
14
+ # DIGIMAP S13 Project: Animefy
15
+
16
+ Web application implementation of [AnimeGANv2](https://github.com/TachibanaYoshino/AnimeGANv2)
17
+
18
+ ### Members:
19
+
20
+ - Andre Ponce
21
+ - Angel Lopez
22
+ - Dean Saril
23
+ - Joshue Jadie
24
+
25
+ ### Requirements:
26
+
27
+ * python 3.7 or lower
28
+ * streamlit
29
+ * tensorflow-gpu 1.15.0
30
+ * opencv (for local) | opencv-headless (cpu-only package; for web app)
31
+ * numpy
32
+
33
+ ### Local Usage:
34
+
35
+ ###### 1) Create an environment through your terminal using `pip-env` or anaconda (`conda`) to avoid version conflicts with your other projects.
36
+
37
+ ###### 2) Install dependencies
38
+
39
+ `pip install -r local_requirements.txt`
40
+
41
+ ###### 3) Install streamlit
42
+
43
+ `pip install streamlit`
44
+
45
+ ###### 4) Run web application
46
+
47
+ `streamlit run app.py`