shashichilappagari commited on
Commit
52321f3
·
1 Parent(s): dac7449

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,8 +10,8 @@ st.header('Specify Model Options Below')
10
  runtime_agent_device=st.radio("Choose runtime agent device combo",("TFLite-EdgeTPU","N2X-ORCA","N2X-ORCA1","OpenVINO-CPU"),index=2)
11
  runtime_agent,device=runtime_agent_device.split('-')[0],runtime_agent_device.split('-')[1]
12
  model_options=zoo.list_models(device=device,runtime=runtime_agent)
13
- activation_option=st.radio( 'Select activation function', ['SiLU', 'RELU6'])
14
- dataset_option=st.radio( 'Select a dataset option', ['COCO', 'Face','License Plate','Car','Hand'])
15
  st.header('Choose and Run a Model')
16
  st.text('Select a model and upload an image. Then click on the submit button')
17
  with st.form("model_form"):
 
10
  runtime_agent_device=st.radio("Choose runtime agent device combo",("TFLite-EdgeTPU","N2X-ORCA","N2X-ORCA1","OpenVINO-CPU"),index=2)
11
  runtime_agent,device=runtime_agent_device.split('-')[0],runtime_agent_device.split('-')[1]
12
  model_options=zoo.list_models(device=device,runtime=runtime_agent)
13
+ activation_option=st.radio( 'Select activation function', ['silu', 'relu6'])
14
+ dataset_option=st.radio( 'Select a dataset option', ['coco', 'face','lp','car','hand'])
15
  st.header('Choose and Run a Model')
16
  st.text('Select a model and upload an image. Then click on the submit button')
17
  with st.form("model_form"):