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
9e6931cd
Commit
9e6931cd
authored
6 months ago
by
Thomas Edwards
Browse files
Options
Downloads
Patches
Plain Diff
Work towards USAS + ner
parent
20e3b60e
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
func/ner/ner.py
+7
-0
7 additions, 0 deletions
func/ner/ner.py
func/usas/usas.py
+20
-3
20 additions, 3 deletions
func/usas/usas.py
main.py
+7
-3
7 additions, 3 deletions
main.py
with
34 additions
and
6 deletions
func/ner/ner.py
+
7
−
0
View file @
9e6931cd
...
@@ -14,6 +14,13 @@ def run_ner_on_text(page):
...
@@ -14,6 +14,13 @@ def run_ner_on_text(page):
word
=
item
.
word
word
=
item
.
word
ner
=
item
.
ner
ner
=
item
.
ner
idx
=
item
.
idx
idx
=
item
.
idx
print
(
type
(
idx
))
print
(
idx
)
print
(
type
(
ner
))
print
(
ner
)
print
(
type
(
word
))
print
(
word
)
print
(
'
--------
'
)
obj
=
{
"
word
"
:
word
,
"
translation
"
:
""
,
"
ner
"
:
ner
,
"
idx
"
:
idx
}
obj
=
{
"
word
"
:
word
,
"
translation
"
:
""
,
"
ner
"
:
ner
,
"
idx
"
:
idx
}
data
.
append
(
obj
)
data
.
append
(
obj
)
...
...
This diff is collapsed.
Click to expand it.
func/usas/usas.py
+
20
−
3
View file @
9e6931cd
...
@@ -11,10 +11,27 @@ def run_usas_on_text(page):
...
@@ -11,10 +11,27 @@ def run_usas_on_text(page):
nlp
.
add_pipe
(
'
pymusas_rule_based_tagger
'
,
source
=
chinese_tagger_pipeline
)
nlp
.
add_pipe
(
'
pymusas_rule_based_tagger
'
,
source
=
chinese_tagger_pipeline
)
output_doc
=
nlp
(
page
)
output_doc
=
nlp
(
page
)
data
=
[]
print
(
f
'
Text
\t
POS
\t
USAS Tags
'
)
tags
=
[]
print
(
f
'
Text
\t
POS
\t
MWE start and end index
\t
USAS Tags
'
)
for
token
in
output_doc
:
for
token
in
output_doc
:
print
(
f
'
{
token
.
text
}
\t
{
token
.
pos_
}
\t
{
token
.
_
.
pymusas_tags
}
'
)
start
,
end
=
token
.
_
.
pymusas_mwe_indexes
[
0
]
idx
=
(
start
,
end
)
for
el
in
token
.
_
.
pymusas_tags
:
obj
=
{
"
word
"
:
token
.
text
,
"
Usas Tags
"
:
el
,
"
idx
"
:
idx
}
tags
.
append
(
el
)
data
.
append
(
obj
)
res
=
[]
procTags
=
[]
for
x
in
tags
:
if
x
not
in
procTags
:
res
.
append
({
"
Tag
"
:
x
,
"
Count
"
:
tags
.
count
(
x
)})
procTags
.
append
(
x
)
result
=
{
'
output
'
:
"
Hello USAS
"
,
'
message
'
:
'
Done
'
,
'
code
'
:
'
SUCCESS
'
}
result
=
{
'
output
'
:
res
,
'
message
'
:
'
Done
'
,
'
code
'
:
'
SUCCESS
'
}
return
result
return
result
This diff is collapsed.
Click to expand it.
main.py
+
7
−
3
View file @
9e6931cd
...
@@ -19,18 +19,22 @@ def test():
...
@@ -19,18 +19,22 @@ def test():
return
"
Success
"
return
"
Success
"
@app.route
(
'
/ner
'
,
methods
=
[
'
POST
'
])
@app.route
(
"
/ner
"
,
methods
=
[
'
POST
'
])
def
ner
():
def
ner
():
request_data
=
request
.
get_json
()
request_data
=
request
.
get_json
()
print
(
request_data
)
#
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
(
"
/usas
"
)
@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
)
return
result
return
result
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