Spaces:
Sleeping
Sleeping
- .gitmodules +3 -0
- app.py +7 -0
- t5-vae-flax +1 -0
.gitmodules
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
[submodule "t5-vae-flax"]
|
2 |
+
path = t5-vae-flax
|
3 |
+
url = https://github.com/Fraser-Greenlee/t5-vae-flax.git
|
app.py
CHANGED
@@ -1,4 +1,11 @@
|
|
1 |
import streamlit as st
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
x = st.slider('Select a value')
|
4 |
st.write(x, 'squared is', x * x)
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
st.write('Using submodule https://github.com/Fraser-Greenlee/t5-vae-flax'
|
4 |
+
|
5 |
+
import os
|
6 |
+
st.write(os.listdir('.'))
|
7 |
+
|
8 |
+
st.write('☝️ missing folder `t5-vae-flax`')
|
9 |
+
|
10 |
x = st.slider('Select a value')
|
11 |
st.write(x, 'squared is', x * x)
|
t5-vae-flax
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 0c030dca4751e6def730968a2f33fe093a608cdb
|