Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
enabling use of third party acoustic models
Browse files Browse the repository at this point in the history
  • Loading branch information
Jemoka committed Dec 7, 2023
1 parent 73ec047 commit 282ec67
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion baln/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from multiprocessing import Process, freeze_support

VERSION="0.3.57"
VERSION="0.3.58"
NOTES="enabling old utterance model"

#################### OPTIONS ################################
Expand Down Expand Up @@ -57,6 +57,10 @@ def batchalign(ctx):
help="actually invoke MFA or just run Batchalign operations", default=True)
@click.option("--prealigned/--scratch",
help="process CHAT file that is already utterance aligned", default=True)
@click.option("--model", type=click.Path(exists=True, file_okay=False, dir_okay=True),
help="the dictionary for forced alignment", default=None)
@click.option("--dictionary", type=click.Path(exists=True, file_okay=True, dir_okay=False),
help="the acoustic model for forced alignment", default=None)
def align(ctx, **kwargs):
"""align a CHAT transcript against a media file"""

Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "batchalign" %}
{% set version = "0.3.57" %}
{% set version = "0.3.58" %}

package:
name: {{ name }}
Expand Down

0 comments on commit 282ec67

Please sign in to comment.