CaxtonEmeraldS commited on
Commit
6131316
·
verified ·
1 Parent(s): 55d4567

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -128,7 +128,7 @@ functions = st.sidebar.selectbox("Select Neurons Count", list(folder_hierarchy[r
128
  neurons = st.sidebar.selectbox("Select Neurons Count", list(folder_hierarchy[repo][initialisation][sampleSize][batchSize][epochs][functions].keys()))
129
 
130
  # Display the selected values
131
- st.write(f"You selected: {initialisation} : {sampleSize} : {batchSize} : {epochs} : {functions} : {neurons}")
132
 
133
  modelPath = os.path.join(os.getcwd(), repo, initialisation, sampleSize, batchSize, epochs, functions, neurons);
134
  model = keras.models.load_model(modelPath);
 
128
  neurons = st.sidebar.selectbox("Select Neurons Count", list(folder_hierarchy[repo][initialisation][sampleSize][batchSize][epochs][functions].keys()))
129
 
130
  # Display the selected values
131
+ st.write(f"You selected: {repo} : {initialisation} : {sampleSize} : {batchSize} : {epochs} : {functions} : {neurons}")
132
 
133
  modelPath = os.path.join(os.getcwd(), repo, initialisation, sampleSize, batchSize, epochs, functions, neurons);
134
  model = keras.models.load_model(modelPath);