Spaces:
Sleeping
Sleeping
ultima versao
Browse files
app.py
CHANGED
@@ -1,14 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
-
from joblib import dump, load
|
3 |
-
|
4 |
from sklearn.feature_extraction.text import TfidfVectorizer
|
5 |
from sklearn.feature_selection import SelectKBest
|
6 |
-
from sklearn.feature_selection import f_classif
|
7 |
-
|
8 |
import pandas as pd
|
9 |
-
|
10 |
from textblob import TextBlob
|
11 |
import textstat
|
|
|
|
|
12 |
|
13 |
titulo1 = """CLONE - Studio Dashboard: "default" and "Default Project" does not give clear information about Alloy and Project unless description is read."""
|
14 |
descricao1 = """Steps To Reproduce: 1. On dashboard on studio 3.0, navigate to Develop tab. 2. Notice "default" and "Default Project" & "two-tabbed" and "Tabbed Application" names. Actual: User does not get clear information from names that one is alloy project and another one is Titanium project unless he reads the description below. Expected: Naming convention or icon corresponding must suggest type"""
|
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
from sklearn.feature_extraction.text import TfidfVectorizer
|
3 |
from sklearn.feature_selection import SelectKBest
|
|
|
|
|
4 |
import pandas as pd
|
|
|
5 |
from textblob import TextBlob
|
6 |
import textstat
|
7 |
+
from huggingface_hub import hf_hub_download
|
8 |
+
import joblib
|
9 |
|
10 |
titulo1 = """CLONE - Studio Dashboard: "default" and "Default Project" does not give clear information about Alloy and Project unless description is read."""
|
11 |
descricao1 = """Steps To Reproduce: 1. On dashboard on studio 3.0, navigate to Develop tab. 2. Notice "default" and "Default Project" & "two-tabbed" and "Tabbed Application" names. Actual: User does not get clear information from names that one is alloy project and another one is Titanium project unless he reads the description below. Expected: Naming convention or icon corresponding must suggest type"""
|