BhumikaMak commited on
Commit
bccb3e3
·
verified ·
1 Parent(s): aa94745

initial netron template

Browse files
Files changed (1) hide show
  1. app.py +12 -36
app.py CHANGED
@@ -158,46 +158,22 @@ with gr.Blocks(css=custom_css) as interface:
158
  if __name__ == "__main__":
159
  interface.launch(share=True)
160
  """
161
- import gradio as gr
162
- import os
163
- import subprocess
164
-
165
- # Function to visualize the model
166
- def visualize_model(model_file):
167
- # Create the output directory if it doesn't exist
168
- output_dir = "./models/tmp/gradio/"
169
- os.makedirs(output_dir, exist_ok=True) # Create directories if needed
170
-
171
- # Define the file path to save
172
- file_path = os.path.join(output_dir, model_file.name)
173
-
174
- # Save the uploaded file
175
- with open(file_path, "wb") as f:
176
- with open(model_file.name, "rb") as uploaded_file:
177
- f.write(uploaded_file.read()) # FIXED: Properly read and write file data
178
-
179
- # Start Netron server to visualize the model
180
- port = 8081
181
- subprocess.Popen(
182
- ["netron", "--host", "0.0.0.0", "--port", str(port), file_path],
183
- stdout=subprocess.PIPE,
184
- stderr=subprocess.PIPE,
185
- )
186
 
187
- # Return URL for visualization
188
- netron_url = f"http://localhost:{port}"
189
- return f"Model uploaded successfully! View it at: {netron_url}"
190
 
 
 
 
191
 
192
- # Gradio Interface
193
- demo = gr.Interface(
194
  fn=visualize_model,
195
- inputs=gr.File(label="Upload your model file (ONNX, TensorFlow, etc.)"),
196
- outputs=gr.Textbox(label="Netron Link"),
197
- title="Model Visualizer",
198
- description="Upload a model file to visualize its architecture using Netron.",
199
  )
200
 
201
  # Launch the app
202
- demo.launch(server_name="localhost", server_port=7860, share = True)
203
-
 
158
  if __name__ == "__main__":
159
  interface.launch(share=True)
160
  """
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
+ import gradio as gr
163
+ import netron
 
164
 
165
+ # Function to visualize the model using Netron
166
+ def visualize_model(model_path):
167
+ netron.start(model_path)
168
 
169
+ # Create Gradio interface
170
+ iface = gr.Interface(
171
  fn=visualize_model,
172
+ inputs="text",
173
+ outputs="text",
174
+ title="Model Visualization with Netron",
175
+ description="Enter the path to your model file (e.g., .onnx, .h5) to visualize."
176
  )
177
 
178
  # Launch the app
179
+ iface.launch(share=True)