Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,6 +7,32 @@ from nltk.corpus import stopwords
|
|
7 |
from nltk import FreqDist
|
8 |
from graphviz import Digraph
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
# Download NLTK resources
|
11 |
nltk.download('punkt')
|
12 |
nltk.download('stopwords')
|
|
|
7 |
from nltk import FreqDist
|
8 |
from graphviz import Digraph
|
9 |
|
10 |
+
|
11 |
+
# Set page configuration with a title and favicon
|
12 |
+
st.set_page_config(
|
13 |
+
page_title="📺Transcript📜EDA🔍NLTK",
|
14 |
+
page_icon="🌠",
|
15 |
+
layout="wide",
|
16 |
+
initial_sidebar_state="expanded",
|
17 |
+
menu_items={
|
18 |
+
'Get Help': 'https://huggingface.co/awacke1',
|
19 |
+
'Report a bug': "https://huggingface.co/spaces/awacke1/WebDataDownload",
|
20 |
+
'About': "# Midjourney: https://discord.com/channels/@me/997514686608191558"
|
21 |
+
}
|
22 |
+
)
|
23 |
+
|
24 |
+
st.markdown('''
|
25 |
+
### 🔍 Exploratory Data Analysis (EDA) 📊:
|
26 |
+
- Dive deep into the sea of data with our EDA feature, unveiling hidden patterns 🕵️♂️ and insights 🧠 in your transcripts. Transform raw data into a treasure trove of information 🏆.
|
27 |
+
|
28 |
+
### 📜 Natural Language Toolkit (NLTK) 🛠️:
|
29 |
+
- Harness the power of NLTK to process and understand human language 🗣️. From tokenization to sentiment analysis, our toolkit is your compass 🧭 in the vast landscape of natural language processing (NLP).
|
30 |
+
|
31 |
+
### 📺 Transcript Analysis 📈:
|
32 |
+
- Elevate your text analysis with our advanced transcript analysis tools. Whether it's speech recognition 🎙️ or thematic extraction 🌐, turn your audiovisual content into actionable insights 🔑.
|
33 |
+
|
34 |
+
''')
|
35 |
+
|
36 |
# Download NLTK resources
|
37 |
nltk.download('punkt')
|
38 |
nltk.download('stopwords')
|