mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nlp.git
synced 2025-01-13 20:10:34 +00:00
Change to one job.
This commit is contained in:
parent
d1a0b5a43b
commit
306487209e
2
nlp
2
nlp
@ -78,7 +78,7 @@ class NLPWorkflow(WorkflowRunner):
|
|||||||
os.path.join(job["output_dir"], os.path.basename(job["path"]).rsplit(".", 1)[0] + ".vrt"),
|
os.path.join(job["output_dir"], os.path.basename(job["path"]).rsplit(".", 1)[0] + ".vrt"),
|
||||||
self.lang
|
self.lang
|
||||||
)
|
)
|
||||||
nlp_jobs.append(self.addTask(label="nlp_job_-_%i" % (nlp_job_number), command=cmd, dependencies=mkdir_jobs, nCores=min(4, self.nCores), memMb=16384))
|
nlp_jobs.append(self.addTask(label="nlp_job_-_%i" % (nlp_job_number), command=cmd, dependencies=mkdir_jobs, nCores=self.nCores, memMb=16384))
|
||||||
|
|
||||||
|
|
||||||
def analyze_jobs(inputDir, outputDir, level=1):
|
def analyze_jobs(inputDir, outputDir, level=1):
|
||||||
|
@ -38,7 +38,7 @@ nlp = spacy.load(SPACY_MODELS[args.lang])
|
|||||||
with open(args.input) as input_file:
|
with open(args.input) as input_file:
|
||||||
text = input_file.read()
|
text = input_file.read()
|
||||||
texts = textwrap.wrap(text, 1000000, break_long_words=False)
|
texts = textwrap.wrap(text, 1000000, break_long_words=False)
|
||||||
|
text = None
|
||||||
|
|
||||||
# Create and open the output file
|
# Create and open the output file
|
||||||
output_file = open(args.output, "w+")
|
output_file = open(args.output, "w+")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user