Spaces:
Runtime error
Runtime error
Remove gif
Browse files- __pycache__/StyleMix.cpython-39.pyc +0 -0
- __pycache__/layers.cpython-39.pyc +0 -0
- __pycache__/models.cpython-39.pyc +0 -0
- __pycache__/utils.cpython-39.pyc +0 -0
- app.py +25 -7
- assets/video/anime.gif +0 -3
- assets/video/anime.png +0 -0
- assets/video/aurora.gif +0 -3
- assets/video/fauvism.gif +0 -3
- assets/video/grumpy_cat.gif +0 -3
- assets/video/moon_gate.gif +0 -3
- assets/video/painting.gif +0 -3
- assets/video/universe.gif +0 -3
__pycache__/StyleMix.cpython-39.pyc
ADDED
Binary file (2.15 kB). View file
|
|
__pycache__/layers.cpython-39.pyc
ADDED
Binary file (6.82 kB). View file
|
|
__pycache__/models.cpython-39.pyc
ADDED
Binary file (4.76 kB). View file
|
|
__pycache__/utils.cpython-39.pyc
ADDED
Binary file (2.82 kB). View file
|
|
app.py
CHANGED
@@ -88,23 +88,41 @@ def show_model_summary(expanded):
|
|
88 |
|
89 |
with st.expander('Video gallery', expanded=False):
|
90 |
cols=st.columns(4)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
cols[0].write("Universe GAN")
|
92 |
-
cols[0].
|
93 |
cols[0].write("Fauvism still life GAN")
|
94 |
-
cols[0].
|
95 |
|
96 |
cols[1].write("Aurora GAN")
|
97 |
-
cols[1].
|
98 |
cols[1].write("Moon gate GAN")
|
99 |
-
cols[1].
|
100 |
|
101 |
cols[2].write("Anime GAN")
|
102 |
-
cols[2].
|
103 |
cols[2].write("Painting GAN")
|
104 |
-
cols[2].
|
105 |
|
106 |
cols[3].write("Grumpy cat GAN")
|
107 |
-
cols[3].
|
108 |
|
109 |
|
110 |
def main():
|
|
|
88 |
|
89 |
with st.expander('Video gallery', expanded=False):
|
90 |
cols=st.columns(4)
|
91 |
+
# cols[0].write("Universe GAN")
|
92 |
+
# cols[0].image('assets/video/universe.gif')
|
93 |
+
# cols[0].write("Fauvism still life GAN")
|
94 |
+
# cols[0].image('assets/video/fauvism.gif')
|
95 |
+
#
|
96 |
+
# cols[1].write("Aurora GAN")
|
97 |
+
# cols[1].image('assets/video/aurora.gif')
|
98 |
+
# cols[1].write("Moon gate GAN")
|
99 |
+
# cols[1].image('assets/video/moon_gate.gif')
|
100 |
+
#
|
101 |
+
# cols[2].write("Anime GAN")
|
102 |
+
# cols[2].image('assets/video/anime.gif')
|
103 |
+
# cols[2].write("Painting GAN")
|
104 |
+
# cols[2].image('assets/video/painting.gif')
|
105 |
+
#
|
106 |
+
# cols[3].write("Grumpy cat GAN")
|
107 |
+
# cols[3].image('assets/video/grumpy_cat.gif')
|
108 |
+
|
109 |
cols[0].write("Universe GAN")
|
110 |
+
cols[0].video('assets/video/universe.mp4')
|
111 |
cols[0].write("Fauvism still life GAN")
|
112 |
+
cols[0].video('assets/video/fauvism.mp4')
|
113 |
|
114 |
cols[1].write("Aurora GAN")
|
115 |
+
cols[1].video('assets/video/aurora.mp4')
|
116 |
cols[1].write("Moon gate GAN")
|
117 |
+
cols[1].video('assets/video/moongate.mp4')
|
118 |
|
119 |
cols[2].write("Anime GAN")
|
120 |
+
cols[2].video('assets/video/anime.mp4')
|
121 |
cols[2].write("Painting GAN")
|
122 |
+
cols[2].video('assets/video/painting.mp4')
|
123 |
|
124 |
cols[3].write("Grumpy cat GAN")
|
125 |
+
cols[3].video('assets/video/grumpy.mp4')
|
126 |
|
127 |
|
128 |
def main():
|
assets/video/anime.gif
DELETED
Git LFS Details
|
assets/video/anime.png
ADDED
assets/video/aurora.gif
DELETED
Git LFS Details
|
assets/video/fauvism.gif
DELETED
Git LFS Details
|
assets/video/grumpy_cat.gif
DELETED
Git LFS Details
|
assets/video/moon_gate.gif
DELETED
Git LFS Details
|
assets/video/painting.gif
DELETED
Git LFS Details
|
assets/video/universe.gif
DELETED
Git LFS Details
|