Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2021-060
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chalika Mihiran
2021-060
Commits
0d0f0aba
Commit
0d0f0aba
authored
Jul 03, 2021
by
Dhananjaya Jayashanka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add text analyze and text analyze using NLTK
parent
5f7c9d88
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
102 additions
and
0 deletions
+102
-0
textAnalyze(NLTK).py
textAnalyze(NLTK).py
+55
-0
textAnalyze.py
textAnalyze.py
+47
-0
No files found.
textAnalyze(NLTK).py
0 → 100644
View file @
0d0f0aba
import
string
from
collections
import
Counter
# import matplotlib.pyplot as plt
from
nltk.corpus
import
stopwords
from
nltk.sentiment.vader
import
SentimentIntensityAnalyzer
from
nltk.stem
import
WordNetLemmatizer
from
nltk.tokenize
import
word_tokenize
text
=
open
(
'read.txt'
,
encoding
=
'utf-8'
)
.
read
()
lower_case
=
text
.
lower
()
cleaned_text
=
lower_case
.
translate
(
str
.
maketrans
(
''
,
''
,
string
.
punctuation
))
# Using word_tokenize because it's faster than split()
tokenized_words
=
word_tokenize
(
cleaned_text
,
"english"
)
# Removing Stop Words
final_words
=
[]
for
word
in
tokenized_words
:
if
word
not
in
stopwords
.
words
(
'english'
):
final_words
.
append
(
word
)
# Lemmatization - From plural to single + Base form of a word (example better-> good)
lemma_words
=
[]
for
word
in
final_words
:
word
=
WordNetLemmatizer
()
.
lemmatize
(
word
)
lemma_words
.
append
(
word
)
emotion_list
=
[]
with
open
(
'emotions.txt'
,
'r'
)
as
file
:
for
line
in
file
:
clear_line
=
line
.
replace
(
"
\n
"
,
''
)
.
replace
(
","
,
''
)
.
replace
(
"'"
,
''
)
.
strip
()
word
,
emotion
=
clear_line
.
split
(
':'
)
if
word
in
lemma_words
:
emotion_list
.
append
(
emotion
)
print
(
emotion_list
)
w
=
Counter
(
emotion_list
)
print
(
w
)
def
sentiment_analyse
(
sentiment_text
):
score
=
SentimentIntensityAnalyzer
()
.
polarity_scores
(
sentiment_text
)
if
score
[
'neg'
]
>
score
[
'pos'
]:
print
(
"Negative Sentiment"
)
elif
score
[
'neg'
]
<
score
[
'pos'
]:
print
(
"Positive Sentiment"
)
else
:
print
(
"Neutral Sentiment"
)
sentiment_analyse
(
cleaned_text
)
textAnalyze.py
0 → 100644
View file @
0d0f0aba
import
string
from
collections
import
Counter
# import matplotlib.pyplot as plt
# reading text file
text
=
open
(
"read.txt"
,
encoding
=
"utf-8"
)
.
read
()
# converting to lowercase
lower_case
=
text
.
lower
()
# Removing punctuations
cleaned_text
=
lower_case
.
translate
(
str
.
maketrans
(
''
,
''
,
string
.
punctuation
))
# splitting text into words
tokenized_words
=
cleaned_text
.
split
()
stop_words
=
[
"i"
,
"me"
,
"my"
,
"myself"
,
"we"
,
"our"
,
"ours"
,
"ourselves"
,
"you"
,
"your"
,
"yours"
,
"yourself"
,
"yourselves"
,
"he"
,
"him"
,
"his"
,
"himself"
,
"she"
,
"her"
,
"hers"
,
"herself"
,
"it"
,
"its"
,
"itself"
,
"they"
,
"them"
,
"their"
,
"theirs"
,
"themselves"
,
"what"
,
"which"
,
"who"
,
"whom"
,
"this"
,
"that"
,
"these"
,
"those"
,
"am"
,
"is"
,
"are"
,
"was"
,
"were"
,
"be"
,
"been"
,
"being"
,
"have"
,
"has"
,
"had"
,
"having"
,
"do"
,
"does"
,
"did"
,
"doing"
,
"a"
,
"an"
,
"the"
,
"and"
,
"but"
,
"if"
,
"or"
,
"because"
,
"as"
,
"until"
,
"while"
,
"of"
,
"at"
,
"by"
,
"for"
,
"with"
,
"about"
,
"against"
,
"between"
,
"into"
,
"through"
,
"during"
,
"before"
,
"after"
,
"above"
,
"below"
,
"to"
,
"from"
,
"up"
,
"down"
,
"in"
,
"out"
,
"on"
,
"off"
,
"over"
,
"under"
,
"again"
,
"further"
,
"then"
,
"once"
,
"here"
,
"there"
,
"when"
,
"where"
,
"why"
,
"how"
,
"all"
,
"any"
,
"both"
,
"each"
,
"few"
,
"more"
,
"most"
,
"other"
,
"some"
,
"such"
,
"no"
,
"nor"
,
"not"
,
"only"
,
"own"
,
"same"
,
"so"
,
"than"
,
"too"
,
"very"
,
"s"
,
"t"
,
"can"
,
"will"
,
"just"
,
"don"
,
"should"
,
"now"
]
# Removing stop words from the tokenized words list
final_words
=
[]
for
word
in
tokenized_words
:
if
word
not
in
stop_words
:
final_words
.
append
(
word
)
emotion_list
=
[]
with
open
(
'emotions.txt'
,
'r'
)
as
file
:
for
line
in
file
:
clear_line
=
line
.
replace
(
"
\n
"
,
''
)
.
replace
(
","
,
''
)
.
replace
(
"'"
,
''
)
.
strip
()
word
,
emotion
=
clear_line
.
split
(
':'
)
if
word
in
final_words
:
emotion_list
.
append
(
emotion
)
print
(
emotion_list
)
w
=
Counter
(
emotion_list
)
print
(
w
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment