vivek9 commited on
Commit
d38eea3
·
verified ·
1 Parent(s): 1525b5b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -91,7 +91,7 @@ def visualize_neural(a):
91
  else:
92
  return image_array,"palindrom"
93
 
94
- title="palindrom/non palindrom detection of binary string of length 10 by neural network"
95
 
96
  demo = gr.Interface(fn=visualize_neural, inputs=gr.Textbox(label="input a binary string of length 10"), outputs=[gr.Image(label="Neural network visualization"),gr.Textbox(label="output")],title=title)
97
 
 
91
  else:
92
  return image_array,"palindrom"
93
 
94
+ title="Implementation of Backpropagation and Training a Palindrome Network"
95
 
96
  demo = gr.Interface(fn=visualize_neural, inputs=gr.Textbox(label="input a binary string of length 10"), outputs=[gr.Image(label="Neural network visualization"),gr.Textbox(label="output")],title=title)
97