-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add skeleton * port midi.py * update path for maestro metadata json * add tests and ci * add space * update midi tests * add abstract tokenizer class * fix mypy and upgrade to pep 585 * rmv import * fix docstring * migrate abstokenizer * fix mypy * update README * add abstokenizer tests
- Loading branch information
Showing
9 changed files
with
334 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
"""Includes Tokenizers and pre-processing utilities.""" | ||
|
||
from ariautils.tokenizer._base import Tokenizer | ||
from ._base import Tokenizer | ||
from .absolute import AbsTokenizer | ||
|
||
__all__ = ["Tokenizer"] | ||
__all__ = ["Tokenizer", "AbsTokenizer"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
""""Tests for MidiDict.""" | ||
|
||
import unittest | ||
import tempfile | ||
import shutil | ||
|
Oops, something went wrong.