kingav commited on
Commit
1949ce4
·
verified ·
1 Parent(s): 78c5c9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -17,9 +17,13 @@ from tensorflow.keras.datasets import mnist,cifar10
17
 
18
  option = st.selectbox(
19
  "Which model would you like to get prediction with?",
20
- ("Auto-Regressor", "Auto-Encoder", "Diffusion-Model","Other"))
21
 
22
  st.write("You selected:", option)
 
 
 
 
23
  if option == "Auto-Encoder":
24
  st.write("It is under development")
25
  st.write("Stay tune... Comming soon... :)")
@@ -34,6 +38,9 @@ if option == "Diffusion-Model":
34
  if option == "Auto-Regressor":
35
  if st.button("Run"):
36
  st.write("Running Auto-Regressor")
 
 
 
37
 
38
  (trainX, trainy), (testX, testy) = cifar10.load_data()
39
 
 
17
 
18
  option = st.selectbox(
19
  "Which model would you like to get prediction with?",
20
+ ("None","Auto-Regressor", "Auto-Encoder", "Diffusion-Model","Other"))
21
 
22
  st.write("You selected:", option)
23
+
24
+ if option == "None":
25
+ st.write("Please Select the model to get the fun prediction.... :)")
26
+
27
  if option == "Auto-Encoder":
28
  st.write("It is under development")
29
  st.write("Stay tune... Comming soon... :)")
 
38
  if option == "Auto-Regressor":
39
  if st.button("Run"):
40
  st.write("Running Auto-Regressor")
41
+
42
+ st.write("trained on --> cifar-10 dataset, RTX-GPU's, 50-epochs")
43
+ st.write("This is trail model, updated version will be updated consicutively.")
44
 
45
  (trainX, trainy), (testX, testy) = cifar10.load_data()
46