Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cogniStance
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thomas Edwards
cogniStance
Commits
cc1be73c
Commit
cc1be73c
authored
6 months ago
by
Thomas Edwards
Browse files
Options
Downloads
Patches
Plain Diff
Work towards USAS + ner + translation + sentiment analysis
parent
85589304
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
api/api_functions.py
+13
-0
13 additions, 0 deletions
api/api_functions.py
func/translation/translation.py
+26
-0
26 additions, 0 deletions
func/translation/translation.py
main.py
+10
-5
10 additions, 5 deletions
main.py
with
49 additions
and
5 deletions
api/api_functions.py
+
13
−
0
View file @
cc1be73c
...
@@ -2,6 +2,7 @@ from flask import make_response, jsonify
...
@@ -2,6 +2,7 @@ from flask import make_response, jsonify
from
func.ner.ner
import
*
from
func.ner.ner
import
*
from
func.sentiment.sentiment
import
*
from
func.sentiment.sentiment
import
*
from
func.translation.translation
import
run_translation_on_text
from
func.usas.usas
import
*
from
func.usas.usas
import
*
...
@@ -16,6 +17,18 @@ def get_ner_for_data(page):
...
@@ -16,6 +17,18 @@ def get_ner_for_data(page):
return
make_response
(
jsonify
(
result
),
400
)
return
make_response
(
jsonify
(
result
),
400
)
# Perform translation on a file
# TAKES XML text page
# Returns english translation results
def
get_translation_for_data
(
page
):
result
=
run_translation_on_text
(
page
)
if
result
[
"
code
"
]
==
"
SUCCESS
"
:
return
make_response
(
jsonify
(
result
),
201
)
return
make_response
(
jsonify
(
result
),
400
)
# Perform USAS analysis on a file
# Perform USAS analysis on a file
# TAKES XML text page
# TAKES XML text page
...
...
This diff is collapsed.
Click to expand it.
func/translation/translation.py
0 → 100644
+
26
−
0
View file @
cc1be73c
import
torch
from
ckip_transformers.nlp
import
CkipWordSegmenter
,
CkipPosTagger
,
CkipNerChunker
from
transformers
import
pipeline
import
pandas
as
pd
from
shared.translate
import
translate
#page = '尼罗河 是一条流經非洲東部與北部的河流,與中非地區的剛果河、非洲南部的赞比西河以及西非地区的尼日尔河並列非洲最大的四個河流系統。'
# Perform NER on Text
def
run_translation_on_text
(
page
):
translation
=
'
<p>Translation</p>
'
translation
=
translation
+
'
<span>
'
translation
=
translation
+
translate
(
page
).
text
translation
=
translation
+
'
</span>
'
result
=
{
'
output
'
:
translation
,
'
message
'
:
'
Done
'
,
'
code
'
:
'
SUCCESS
'
}
return
result
This diff is collapsed.
Click to expand it.
main.py
+
10
−
5
View file @
cc1be73c
...
@@ -11,7 +11,7 @@ app.config['CORS_HEADERS'] = 'Content-Type'
...
@@ -11,7 +11,7 @@ app.config['CORS_HEADERS'] = 'Content-Type'
@app.route
(
"
/
"
)
@app.route
(
"
/
"
)
def
home
():
def
home
():
return
"
Hello World
!
"
return
"
Success
!
"
@app.route
(
"
/system-check
"
)
@app.route
(
"
/system-check
"
)
...
@@ -23,17 +23,23 @@ def test():
...
@@ -23,17 +23,23 @@ def test():
def
ner
():
def
ner
():
request_data
=
request
.
get_json
()
request_data
=
request
.
get_json
()
#print(request_data)
page
=
request_data
[
'
page
'
]
page
=
request_data
[
'
page
'
]
result
=
get_ner_for_data
(
page
)
result
=
get_ner_for_data
(
page
)
return
result
return
result
@app.route
(
"
/translate
"
,
methods
=
[
'
POST
'
])
def
translate
():
request_data
=
request
.
get_json
()
page
=
request_data
[
'
page
'
]
result
=
get_translation_for_data
(
page
)
return
result
@app.route
(
"
/usas
"
,
methods
=
[
'
POST
'
])
@app.route
(
"
/usas
"
,
methods
=
[
'
POST
'
])
def
usas
():
def
usas
():
print
(
'
hello
'
)
request_data
=
request
.
get_json
()
request_data
=
request
.
get_json
()
print
(
request_data
)
page
=
request_data
[
'
page
'
]
page
=
request_data
[
'
page
'
]
result
=
get_usas_for_data
(
page
)
result
=
get_usas_for_data
(
page
)
...
@@ -43,7 +49,6 @@ def usas():
...
@@ -43,7 +49,6 @@ def usas():
def
sentiment
():
def
sentiment
():
request_data
=
request
.
get_json
()
request_data
=
request
.
get_json
()
print
(
request_data
)
page
=
request_data
[
'
page
'
]
page
=
request_data
[
'
page
'
]
result
=
get_sentiment_for_data
(
page
)
result
=
get_sentiment_for_data
(
page
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment