Nurisslam commited on
Commit
a24d772
·
verified ·
1 Parent(s): 39381b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -5
app.py CHANGED
@@ -23,11 +23,7 @@ examples = [
23
  ]
24
 
25
  # Интерфейс жасау
26
- intf = gr.Interface(fn=classify_text, inputs=text, outputs=label, examples=examples, description=description, css="""
27
- .gradio-container {
28
- background-color: #ffff;
29
- }
30
- """)
31
  intf.launch(inline=False)
32
 
33
 
 
23
  ]
24
 
25
  # Интерфейс жасау
26
+ intf = gr.Interface(fn=classify_text, inputs=text, outputs=label, examples=examples, description=description)
 
 
 
 
27
  intf.launch(inline=False)
28
 
29