oValach commited on
Commit
73f3dc0
1 Parent(s): fec3d78

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -22,7 +22,9 @@ iface = gr.Interface(
22
  inputs=gr.Image(type="numpy"), # Input type
23
  outputs=gr.Image(type="numpy"), # Output type
24
  title="RailSafeNet - Automatic Detection of Objects in the Track", # Title of the interface
25
- description="Upload an image and get a processed image as output." # Description of the interface
 
 
26
  )
27
 
28
  # Launch the interface
 
22
  inputs=gr.Image(type="numpy"), # Input type
23
  outputs=gr.Image(type="numpy"), # Output type
24
  title="RailSafeNet - Automatic Detection of Objects in the Track", # Title of the interface
25
+ description="This is a demo of the master's thesis focused on the Automatic Detection of Objects in the Track.\n
26
+ The repository with the code is accesible from: https://github.com/oValach/RailSafeNet_DT \n\n
27
+ Upload an image with a scene including rail track and get a processed image with marked rail critical areas and detected and classified objects."
28
  )
29
 
30
  # Launch the interface