Update app.py
Browse files
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);
|