Spaces:
Running
Running
Initial content analyzer setup
Browse files
README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
-
|
|
|
2 |
title: Content Analyzer
|
3 |
emoji: π
|
4 |
colorFrom: blue
|
@@ -8,6 +9,8 @@ sdk_version: 4.0.0
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: apache-2.0
|
|
|
|
|
11 |
|
12 |
---
|
13 |
|
@@ -36,10 +39,17 @@ An advanced content analysis tool that can process:
|
|
36 |
|
37 |
- .txt (Text files)
|
38 |
- .pdf (PDF documents)
|
39 |
-
- .docx (Word documents)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
#
|
42 |
|
43 |
git add README.md
|
44 |
-
git commit -m "
|
45 |
git push
|
|
|
1 |
+
## cat > README.md << 'EOL'
|
2 |
+
|
3 |
title: Content Analyzer
|
4 |
emoji: π
|
5 |
colorFrom: blue
|
|
|
9 |
app_file: app.py
|
10 |
pinned: false
|
11 |
license: apache-2.0
|
12 |
+
python_version: 3.10
|
13 |
+
app_port: 7860
|
14 |
|
15 |
---
|
16 |
|
|
|
39 |
|
40 |
- .txt (Text files)
|
41 |
- .pdf (PDF documents)
|
42 |
+
- .docx (Word documents)
|
43 |
+
|
44 |
+
## Models Used
|
45 |
+
|
46 |
+
- Summarization: facebook/bart-large-cnn
|
47 |
+
- Sentiment Analysis: Default transformer pipeline
|
48 |
+
- Topic Classification: Zero-shot classification
|
49 |
+
EOL
|
50 |
|
51 |
+
# Commit and push the changes
|
52 |
|
53 |
git add README.md
|
54 |
+
git commit -m "Fix README.md YAML metadata"
|
55 |
git push
|