marcela9409 commited on
Commit
e06fb68
·
verified ·
1 Parent(s): d056774

Add missing code

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -1,8 +1,10 @@
 
1
  import requests
2
  from numpy import asarray
3
- import gradio as gr
4
  from transformers import pipeline
5
 
 
6
  answer = requests.get("https://git.io/JJkYN")
7
  labels =answer.text.split("\n")
8
 
@@ -21,7 +23,6 @@ def audio_to_text(audio):
21
  def text_to_sentiment(text):
22
  return classifier(text)[0]["label"]
23
 
24
-
25
  demo = gr.Blocks()
26
 
27
  with demo:
 
1
+ import gradio as gr
2
  import requests
3
  from numpy import asarray
4
+ import tensorflow as tf
5
  from transformers import pipeline
6
 
7
+ inception_net = tf.keras.applications.MobileNetV2()
8
  answer = requests.get("https://git.io/JJkYN")
9
  labels =answer.text.split("\n")
10
 
 
23
  def text_to_sentiment(text):
24
  return classifier(text)[0]["label"]
25
 
 
26
  demo = gr.Blocks()
27
 
28
  with demo: