Spaces:
Build error
Build error
Update app.py
Browse files- Changed tab names to be specific
- Renamed the apps to it's new name (i.e; Image_Classification_EfficientNetLite4)
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 |
-
|
11 |
Voicechat_Hindi.app.interface
|
12 |
],
|
13 |
-
tab_names=['Chatbot' ,'
|
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)
|