From 79f1316f5044ad3409e928bb576af64caa56aff0 Mon Sep 17 00:00:00 2001 From: Abhishek Thakur Date: Mon, 17 Jun 2024 18:51:28 +0200 Subject: [PATCH] bump version --- colabs/config.yml | 28 ---------------------------- src/autotrain/__init__.py | 2 +- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 colabs/config.yml diff --git a/colabs/config.yml b/colabs/config.yml deleted file mode 100644 index f2258a4977..0000000000 --- a/colabs/config.yml +++ /dev/null @@ -1,28 +0,0 @@ -backend: local -base_model: openai-community/gpt2 -data: - column_mapping: - text: text - path: '' - train_split: null - valid_split: null -hub: - push_to_hub: true - token: ${{HF_TOKEN}} - username: ${{HF_USERNAME}} -log: tensorboard -params: - batch_size: 2 - block_size: 1024 - epochs: 3 - gradient_accumulation: 4 - lr: 3.0e-05 - mixed_precision: fp16 - model_max_length: 2048 - optimizer: adamw_torch - peft: true - scheduler: linear - target_modules: all-linear - unsloth: false -project_name: autotrain-ao159-ddjag -task: llm diff --git a/src/autotrain/__init__.py b/src/autotrain/__init__.py index 1bf3ad7f2b..cd7e891619 100644 --- a/src/autotrain/__init__.py +++ b/src/autotrain/__init__.py @@ -41,7 +41,7 @@ warnings.filterwarnings("ignore", category=UserWarning, module="huggingface_hub") logger = Logger().get_logger() -__version__ = "0.7.124" +__version__ = "0.7.125.dev0" def is_colab():