Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Base Worker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
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
Workers
Base Worker
Commits
40a3a127
Commit
40a3a127
authored
3 years ago
by
Eva Bardou
Browse files
Options
Downloads
Patches
Plain Diff
Refactor code
parent
97d66a04
No related branches found
No related tags found
1 merge request
!88
Use ARKINDEX_CORPUS_ID env variable in get_ml_class_id
Pipeline
#78429
passed
3 years ago
Stage: test
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
arkindex_worker/worker/classification.py
+3
-3
3 additions, 3 deletions
arkindex_worker/worker/classification.py
tests/test_elements_worker/test_classifications.py
+4
-7
4 additions, 7 deletions
tests/test_elements_worker/test_classifications.py
with
7 additions
and
10 deletions
arkindex_worker/worker/classification.py
+
3
−
3
View file @
40a3a127
...
...
@@ -21,12 +21,12 @@ class ClassificationMixin(object):
}
logger
.
info
(
f
"
Loaded
{
len
(
self
.
classes
[
corpus_id
])
}
ML classes
"
)
def
get_ml_class_id
(
self
,
ml_class
,
corpus_id
=
None
):
def
get_ml_class_id
(
self
,
corpus_id
,
ml_class
):
"""
Return the ID corresponding to the given class name on a specific corpus
This method will automatically create missing classes
"""
if
not
corpus_id
:
if
corpus_id
is
None
:
corpus_id
=
os
.
environ
.
get
(
"
ARKINDEX_CORPUS_ID
"
)
if
not
self
.
classes
.
get
(
corpus_id
):
...
...
@@ -87,7 +87,7 @@ class ClassificationMixin(object):
"
CreateClassification
"
,
body
=
{
"
element
"
:
element
.
id
,
"
ml_class
"
:
self
.
get_ml_class_id
(
ml_class
),
"
ml_class
"
:
self
.
get_ml_class_id
(
None
,
ml_class
),
"
worker_version
"
:
self
.
worker_version_id
,
"
confidence
"
:
confidence
,
"
high_confidence
"
:
high_confidence
,
...
...
This diff is collapsed.
Click to expand it.
tests/test_elements_worker/test_classifications.py
+
4
−
7
View file @
40a3a127
...
...
@@ -27,7 +27,7 @@ def test_get_ml_class_id_load_classes(responses, mock_elements_worker):
)
assert
not
mock_elements_worker
.
classes
ml_class_id
=
mock_elements_worker
.
get_ml_class_id
(
"
good
"
,
corpus_id
=
corpus_id
)
ml_class_id
=
mock_elements_worker
.
get_ml_class_id
(
corpus_id
,
"
good
"
)
assert
len
(
responses
.
calls
)
==
3
assert
[
call
.
request
.
url
for
call
in
responses
.
calls
]
==
[
...
...
@@ -60,7 +60,7 @@ def test_get_ml_class_id_inexistant_class(mock_elements_worker, responses):
"
12341234-1234-1234-1234-123412341234
"
:
{
"
good
"
:
"
0000
"
}
}
ml_class_id
=
mock_elements_worker
.
get_ml_class_id
(
"
bad
"
,
corpus_id
=
corpus_id
)
ml_class_id
=
mock_elements_worker
.
get_ml_class_id
(
corpus_id
,
"
bad
"
)
assert
ml_class_id
==
"
new-ml-class-1234
"
# Now it's available
...
...
@@ -78,7 +78,7 @@ def test_get_ml_class_id(mock_elements_worker):
"
12341234-1234-1234-1234-123412341234
"
:
{
"
good
"
:
"
0000
"
}
}
ml_class_id
=
mock_elements_worker
.
get_ml_class_id
(
"
good
"
,
corpus_id
=
corpus_id
)
ml_class_id
=
mock_elements_worker
.
get_ml_class_id
(
corpus_id
,
"
good
"
)
assert
ml_class_id
==
"
0000
"
...
...
@@ -130,10 +130,7 @@ def test_get_ml_class_reload(responses, mock_elements_worker):
)
# Simply request class 2, it should be reloaded
assert
(
mock_elements_worker
.
get_ml_class_id
(
"
class2
"
,
corpus_id
=
corpus_id
)
==
"
class2_id
"
)
assert
mock_elements_worker
.
get_ml_class_id
(
corpus_id
,
"
class2
"
)
==
"
class2_id
"
assert
len
(
responses
.
calls
)
==
5
assert
mock_elements_worker
.
classes
==
{
...
...
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