TornikeO commited on
Commit
eb91037
·
1 Parent(s): adc3bd5

Touch up markdown

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -552,7 +552,13 @@ def process_file(file):
552
  return f"Error: {str(e)}"
553
 
554
  with gr.Blocks(head=_CSS, ) as demo:
555
- gr.Markdown("## TensorFlow Lite Model Visualizer")
 
 
 
 
 
 
556
  file_input = gr.File(label="Upload TFLite File")
557
  html_output = gr.HTML(label="Generated HTML", container=True)
558
  file_input.change(process_file, inputs=file_input, outputs=html_output)
 
552
  return f"Error: {str(e)}"
553
 
554
  with gr.Blocks(head=_CSS, ) as demo:
555
+ gr.Markdown(
556
+ """
557
+ ## TensorFlow Lite Model Visualizer
558
+
559
+ Drag and drop your `.tflite`, `.bin` or `.tf_lite` model files below to analyze them.
560
+
561
+ """)
562
  file_input = gr.File(label="Upload TFLite File")
563
  html_output = gr.HTML(label="Generated HTML", container=True)
564
  file_input.change(process_file, inputs=file_input, outputs=html_output)