Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,7 +37,7 @@ def make_sentences(path_raw_text, path_text):
|
|
| 37 |
|
| 38 |
def make_conllu(path_text, path_empty_conllu):
|
| 39 |
try:
|
| 40 |
-
outcome = os.system(f'python ./src/portTokenizer/portTok.py -o {path_empty_conllu} -m -s
|
| 41 |
return 'T'+str(outcome)
|
| 42 |
except Exception as e:
|
| 43 |
return str(e)
|
|
|
|
| 37 |
|
| 38 |
def make_conllu(path_text, path_empty_conllu):
|
| 39 |
try:
|
| 40 |
+
outcome = os.system(f'python ./src/portTokenizer/portTok.py -o {path_empty_conllu} -m -s S000000 {path_text}')
|
| 41 |
return 'T'+str(outcome)
|
| 42 |
except Exception as e:
|
| 43 |
return str(e)
|