Skip to content

Commit

Permalink
Update cli.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fakerybakery authored Dec 19, 2023
1 parent 42b52b3 commit 675ac49
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions utmos/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def forward(self, wav: torch.tensor) -> torch.tensor:
output = round_down * (1. - indices.fmod(1.)).unsqueeze(0) + round_up * indices.fmod(1.).unsqueeze(0)
return output

@click.command()
@click.argument('filename', type=click.Path(exists=True))
def main(filepath):
model = Score()
Expand Down

0 comments on commit 675ac49

Please sign in to comment.