Update app.py
Browse files
app.py
CHANGED
@@ -58,4 +58,4 @@ if st.button('Generate Plane'):
|
|
58 |
(g_out32, g_out16, g_out8, g_out4) = generator.apply({'params': g_state['params'], 'batch_stats': g_state['batch_stats']}, latents, training=False)
|
59 |
img = ((np.array(g_out32[0])+1)*255./2.).astype(np.uint8)
|
60 |
st.image(Image.fromarray(img))
|
61 |
-
st.write("The model
|
|
|
58 |
(g_out32, g_out16, g_out8, g_out4) = generator.apply({'params': g_state['params'], 'batch_stats': g_state['batch_stats']}, latents, training=False)
|
59 |
img = ((np.array(g_out32[0])+1)*255./2.).astype(np.uint8)
|
60 |
st.image(Image.fromarray(img))
|
61 |
+
st.write("The model and its details are at https://huggingface.co/PrakhAI/AIPlane")
|