Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekkrthakur committed Oct 12, 2023
1 parent d42c50f commit 6bd970a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/autotrain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
warnings.filterwarnings("ignore", category=UserWarning, module="tensorflow")


__version__ = "0.6.36.dev0"
__version__ = "0.6.37.dev0"
2 changes: 1 addition & 1 deletion src/autotrain/trainers/clm/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class LLMTrainingParams(BaseModel):
merge_adapter: bool = Field(False, title="Merge adapter")
username: str = Field(None, title="Hugging Face Username")
use_flash_attention_2: bool = Field(False, title="Use flash attention 2")
disable_gradient_checkpointing: bool = Field(True, title="Gradient checkpointing")
disable_gradient_checkpointing: bool = Field(False, title="Gradient checkpointing")

def save(self, output_dir):
os.makedirs(output_dir, exist_ok=True)
Expand Down

0 comments on commit 6bd970a

Please sign in to comment.