Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
democrasci_preprocWP1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Marta Balode
democrasci_preprocWP1
Commits
fa192339
Commit
fa192339
authored
6 years ago
by
Lili Gasser
Browse files
Options
Downloads
Patches
Plain Diff
clean ffille
parent
80393a74
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/python/run_train_ner.py
+3
-12
3 additions, 12 deletions
src/python/run_train_ner.py
src/sh/train_ner.sh
+1
-1
1 addition, 1 deletion
src/sh/train_ner.sh
with
4 additions
and
13 deletions
src/python/run_train_ner.py
+
3
−
12
View file @
fa192339
...
...
@@ -36,10 +36,9 @@ def main(model=None, output_dir=None, n_iter=100, training_data=None, trained_da
if
training_data
is
not
None
:
call_with_out
(
"
git-lfs pull -I
"
+
training_data
.
as_posix
())
dict_onedoc
=
read_from_txt
(
training_data
)
TRAIN_DATA
=
transform_to_training_format
(
dict_onedoc
)[:
50
]
# TODO: get rid of [:50]
TRAIN_DATA_orig
=
TRAIN_DATA
[:]
print
(
type
(
TRAIN_DATA
),
TRAIN_DATA
[:
10
])
# TODO: format checks
TRAIN_DATA
=
transform_to_training_format
(
dict_onedoc
)
TRAIN_DATA_orig
=
TRAIN_DATA
[:]
# save a copy to have an unshuffled version
print
(
"
Training data loaded
"
)
else
:
sys
.
exit
(
"
no training data
"
)
...
...
@@ -97,14 +96,6 @@ def main(model=None, output_dir=None, n_iter=100, training_data=None, trained_da
dict_ents_test
[
'
entities
'
]
=
list_ents_test
tpl
=
(
text
,
dict_ents_test
,
title
)
TRAIN_DATA_tested
.
append
(
tpl
)
# print('train', list_ents_train)
# print('test', list_ents_test)
# print(set(list_ents_train) == set(list_ents_test))
# if print_output
#if not set(list_ents_train) == set(list_ents_test):
#print(text)
#print("Entities", [(ent.text, ent.label_) for ent in doc.ents])
#print("Tokens", [(t.text, t.ent_type_, t.ent_iob) for t in doc])
alldicts_tested
=
transform_to_reading_format
(
TRAIN_DATA_tested
)
...
...
This diff is collapsed.
Click to expand it.
src/sh/train_ner.sh
+
1
−
1
View file @
fa192339
#!/bin/bash
model
=
de_core_news_sm
n_iter
=
2
n_iter
=
100
path_data
=
data/train_NER/
training_data
=
${
path_data
}
1891_20026449_corrected_german.txt
trained_data
=
${
path_data
}
1891_20026449_corrected_german_trained.txt
...
...
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