shubham680 commited on
Commit
a13ab65
·
verified ·
1 Parent(s): 92d2e6f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -435,7 +435,7 @@ st.markdown("""
435
  </style>
436
  """, unsafe_allow_html=True)
437
 
438
- # ========== Title ==========
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):