Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -435,7 +435,7 @@ st.markdown("""
|
|
| 435 |
</style>
|
| 436 |
""", unsafe_allow_html=True)
|
| 437 |
|
| 438 |
-
#
|
| 439 |
st.title("✨ TensorFlow Playground")
|
| 440 |
|
| 441 |
# Sidebar
|
|
@@ -536,7 +536,7 @@ if st.sidebar.button("🚀 Train Model"):
|
|
| 536 |
hist = model.fit(x_train, y_train, epochs=epochs, validation_data=(x_test, y_test),
|
| 537 |
batch_size=32, verbose=0, callbacks=callbacks)
|
| 538 |
|
| 539 |
-
# Neural Network Diagram
|
| 540 |
|
| 541 |
st.subheader("Neural Network Architecture")
|
| 542 |
def visualize_nn(layers):
|
|
|
|
| 435 |
</style>
|
| 436 |
""", unsafe_allow_html=True)
|
| 437 |
|
| 438 |
+
# Title
|
| 439 |
st.title("✨ TensorFlow Playground")
|
| 440 |
|
| 441 |
# Sidebar
|
|
|
|
| 536 |
hist = model.fit(x_train, y_train, epochs=epochs, validation_data=(x_test, y_test),
|
| 537 |
batch_size=32, verbose=0, callbacks=callbacks)
|
| 538 |
|
| 539 |
+
# Neural Network Diagram
|
| 540 |
|
| 541 |
st.subheader("Neural Network Architecture")
|
| 542 |
def visualize_nn(layers):
|