diff --git a/elpis/trainer/guide.py b/elpis/trainer/guide.py index fa515fd..58254de 100644 --- a/elpis/trainer/guide.py +++ b/elpis/trainer/guide.py @@ -111,9 +111,7 @@ def main(): # or by passing the --help flag to this script. # We now keep distinct sets of args, for a cleaner separation of concerns. - parser = HfArgumentParser( - (ModelArguments, DataArguments, TrainingArguments) - ) + parser = HfArgumentParser((ModelArguments, DataArguments, TrainingArguments)) if len(sys.argv) == 2 and sys.argv[1].endswith(".json"): # If we pass only one argument to the script and it's the path to a json file, # let's parse it to get our arguments. diff --git a/pyproject.toml b/pyproject.toml index c4f97fb..14cd95a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "elpis" -version = "0.1.8" +version = "0.2.0" description = """\ A library to perform automatic speech recognition with huggingface transformers.\ """