Skip to content

Commit

Permalink
Take care of documentation comments
Browse files Browse the repository at this point in the history
  • Loading branch information
David Rubinstein committed Mar 12, 2024
1 parent 76a759c commit c8cede9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ By default, Basic Pitch will attempt to load a model in the following order:

Additionally, the module variable ICASSP_2022_MODEL_PATH will default to the first available version in the list.

We will explain how to override this priority list below. Because all other model serializations were converted from TensorFlow, we recommend using TensorFlow when possible.
We will explain how to override this priority list below. Because all other model serializations were converted from TensorFlow, we recommend using TensorFlow when possible. N.B. Basic Pitch does not install TensorFlow by default to save the user time when installing and running Basic Pitch.

#### Command Line Tool

Expand Down
2 changes: 1 addition & 1 deletion basic_pitch/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def __init__(self, model_path: Union[pathlib.Path, str]):
logging.warning(
"Could not load CoreML file %s even "
"though it looks like a CoreML file with error %s. "
"Are you sure it's a TFLite file?",
"Are you sure it's a CoreML file?",
model_path,
e.__repr__(),
)
Expand Down

0 comments on commit c8cede9

Please sign in to comment.