jalFaizy commited on
Commit
be87173
·
1 Parent(s): 81cc768

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -105,10 +105,8 @@ if __name__ == "__main__":
105
  outputs = [gr.outputs.Textbox(), 'plot']
106
 
107
  title = "3D CNN for CT scans"
108
- description = """This space implements 3D convolutional neural network to predict the presence of viral pneumonia in computer tomography scans.
109
- """
110
- article = """
111
- <p style='text-align: center'>
112
  <a href='https://keras.io/examples/vision/3D_image_classification/' target='_blank'>Keras Example given by Hasib Zunair</a>
113
  <br>
114
  Space by Faizan Shaikh
@@ -120,8 +118,8 @@ if __name__ == "__main__":
120
  inputs,
121
  outputs,
122
  title=title,
123
- description=description,
124
  article=article,
 
125
  examples=['example_1_normal.nii.gz']
126
  )
127
 
 
105
  outputs = [gr.outputs.Textbox(), 'plot']
106
 
107
  title = "3D CNN for CT scans"
108
+ description = "This space implements 3D convolutional neural network to predict the presence of viral pneumonia in computer tomography scans."
109
+ article = """<p style='text-align: center'>
 
 
110
  <a href='https://keras.io/examples/vision/3D_image_classification/' target='_blank'>Keras Example given by Hasib Zunair</a>
111
  <br>
112
  Space by Faizan Shaikh
 
118
  inputs,
119
  outputs,
120
  title=title,
 
121
  article=article,
122
+ description=description,
123
  examples=['example_1_normal.nii.gz']
124
  )
125