ibvhim commited on
Commit
abcf0a9
1 Parent(s): 1deb350

Update app.py

Browse files

- Changed tab names to be specific
- Renamed the apps to it's new name (i.e; Image_Classification_EfficientNetLite4)

Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,14 +1,14 @@
1
  import gradio as gr
2
 
3
- import onnx_guide.app
4
  import Chatbot.app
 
5
  import Voicechat_Hindi.app
6
 
7
  gr.TabbedInterface(
8
  interface_list=[
9
  Chatbot.app.interface,
10
- onnx_guide.app.interface,
11
  Voicechat_Hindi.app.interface
12
  ],
13
- tab_names=['Chatbot' ,'Onnx', 'Voicechat (Hindi)'],
14
  ).launch(debug=True)
 
1
  import gradio as gr
2
 
 
3
  import Chatbot.app
4
+ import Image_Classification_EfficientNetLite4.app
5
  import Voicechat_Hindi.app
6
 
7
  gr.TabbedInterface(
8
  interface_list=[
9
  Chatbot.app.interface,
10
+ Image_Classification_EfficientNetLite4.app.interface,
11
  Voicechat_Hindi.app.interface
12
  ],
13
+ tab_names=['Chatbot' ,'Image Classification (EfficientNet Lite4)', 'Voicechat (Hindi)'],
14
  ).launch(debug=True)