Az-r-ow
commited on
Commit
·
4c89e00
1
Parent(s):
5b6dc84
fix: conflict in conv_tagged_file_to_bio
Browse files
conv_tagged_file_to_bio.py
CHANGED
|
@@ -1,7 +1,6 @@
|
|
| 1 |
from app.travel_resolver.libs.nlp.data_processing import from_tagged_file_to_bio_file
|
| 2 |
|
| 3 |
|
| 4 |
-
<<<<<<< HEAD
|
| 5 |
INPUT_FILES = [
|
| 6 |
"./data/scripting_lcs_1/1k_train_large_samples.txt",
|
| 7 |
"./data/scripting_lcs_1/10k_train_small_samples.txt",
|
|
@@ -15,10 +14,6 @@ OUTPUT_FILES = [
|
|
| 15 |
"./data/bio/fr.bio/100_eval_large_samples.bio",
|
| 16 |
"./data/bio/fr.bio/800_eval_small_samples.bio",
|
| 17 |
]
|
| 18 |
-
=======
|
| 19 |
-
INPUT_FILE = "./data/french_text/1k_unlabeled_samples.txt"
|
| 20 |
-
OUTPUT_FILE = "./data/bio/fr.bio/1k_unlabeled_samples.bio"
|
| 21 |
-
>>>>>>> e25bd1c (data: added multiple sample files + unlabeled sentences)
|
| 22 |
|
| 23 |
tag_entities_pairs = [("<Dep>", "LOC-DEP"), ("<Arr>", "LOC-ARR")]
|
| 24 |
|
|
|
|
| 1 |
from app.travel_resolver.libs.nlp.data_processing import from_tagged_file_to_bio_file
|
| 2 |
|
| 3 |
|
|
|
|
| 4 |
INPUT_FILES = [
|
| 5 |
"./data/scripting_lcs_1/1k_train_large_samples.txt",
|
| 6 |
"./data/scripting_lcs_1/10k_train_small_samples.txt",
|
|
|
|
| 14 |
"./data/bio/fr.bio/100_eval_large_samples.bio",
|
| 15 |
"./data/bio/fr.bio/800_eval_small_samples.bio",
|
| 16 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
tag_entities_pairs = [("<Dep>", "LOC-DEP"), ("<Arr>", "LOC-ARR")]
|
| 19 |
|