-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds KenLM related jobs #451
Conversation
Adds a job for: - compiling KenLM - Building an ARPA-LM using lmplz - Converting an LM into binary format
45e4735
to
a5aca80
Compare
lm/kenlm.py
Outdated
|
||
self.out_lm = self.output_path("lm.gz") | ||
|
||
self.rqmt = {"cpu": 1, "mem": 4.0, "time": 1} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be configurable? text file size might vary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean you can always configure it later via job.rqmt, but yes I could add this as direct paramter.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
true.. my reasoning would be to put in the args of the job. otherwise, users will run once it crashes and then start thinking about it.. maybe not all users but my feeling/hope is that it would be less ^^
Adds a job for: - compiling KenLM - Building an ARPA-LM using lmplz - Converting an LM into binary format
Adds a job for:
I had this stuff around for a longer time and completely forgot about it.