MontrealCorpusTools / Montreal-Forced-Aligner

Command line utility for forced alignment using Kaldi
https://montrealcorpustools.github.io/Montreal-Forced-Aligner/
MIT License
1.29k stars 242 forks source link

How can I specify the name of the subdirectory used within the <temporary_directory>? #665

Open tshmak opened 1 year ago

tshmak commented 1 year ago

This is more of a question.

Is there an option to specify the sub-directory used within ? Currently, it seems to default to /. However, I'd like to be able to specify alternative directories within . So for example, if my is "corpus", I may want to save my temporary files within "/corpus1" rather than "/corpus". This will enable me to run multiple alignments at the same time, cos otherwise, they'll conflict if the s from the different runs have the same name.

mmcauliffe commented 1 year ago

Is it possible to instead run the alignments in parallel with more jobs rather than running the alignment runs in parallel? You can also create symbolic links to the corpus directory and use those new directory names to ensure there isn't any conflict between temporary directories.

tshmak commented 1 year ago

Thanks for the reply. Yes, I've been using symbolic links with different names as a work around.