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
f149437a
Commit
f149437a
authored
Jul 20, 2021
by
chalikaM
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
6cdca649
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
clearness.py
clearness.py
+2
-0
conclusion.py
conclusion.py
+3
-1
introduction.py
introduction.py
+3
-1
No files found.
clearness.py
View file @
f149437a
...
...
@@ -37,3 +37,5 @@ print("Duration of Audio in Seconds", duration)
print
(
"Duration of Audio in Minutes"
,
duration
/
60
)
print
(
len
(
data
))
scoreForClearness
=
50
/
100
conclusion.py
View file @
f149437a
...
...
@@ -45,4 +45,6 @@ verb_phrases = textacy.extract.token_matches(doc, patterns)
for
verb_phrases
in
verb_phrases
:
print
(
"You used questions forms in your conclusion. It is a good practice for a conclusion."
)
print
(
f
"Identified questions : {verb_phrases}"
)
\ No newline at end of file
print
(
f
"Identified questions : {verb_phrases}"
)
scoreForConclusion
=
60
/
100
\ No newline at end of file
introduction.py
View file @
f149437a
...
...
@@ -46,4 +46,6 @@ verb_phrases = textacy.extract.token_matches(doc, patterns)
for
verb_phrases
in
verb_phrases
:
print
(
"You used questions forms in your introduction. It is a good practice for a introduction."
)
print
(
f
"Identified questions : {verb_phrases}"
)
\ No newline at end of file
print
(
f
"Identified questions : {verb_phrases}"
)
scoreForIntroduction
=
40
/
100
;
\ 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