rlrocha commited on
Commit
3375473
1 Parent(s): a35ed00

add app title and description

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -42,6 +42,8 @@ def predict(source, date, start, end):
42
 
43
  return [file_path_input, file_path_output, file_path_predict]
44
 
 
 
45
  demo = gr.Interface(
46
  fn=predict,
47
  inputs=[
@@ -55,7 +57,10 @@ demo = gr.Interface(
55
  gr.Video(label='Output'),
56
  gr.Video(label='Prediction')
57
  ],
58
- examples=examples
 
 
 
59
  )
60
 
61
  if __name__ == "__main__":
 
42
 
43
  return [file_path_input, file_path_output, file_path_predict]
44
 
45
+ article = "<div style='text-align: center;'><a href='https://www.linkedin.com/in/rlrocha/' target='_blank'>Space by Rafael Rocha</a><br></div>"
46
+
47
  demo = gr.Interface(
48
  fn=predict,
49
  inputs=[
 
57
  gr.Video(label='Output'),
58
  gr.Video(label='Prediction')
59
  ],
60
+ examples=examples,
61
+ title = 'IMERG Nowcasting from Southern Brazil',
62
+ description = 'Precipitation nowcasting of south region of Brazil using Integrated Multi-satellitE Retrievals for GPM (IMERG) data',
63
+ article=article
64
  )
65
 
66
  if __name__ == "__main__":