Skip to content

Commit 2d8a0d2

Browse files
authored
Fix simpo_gamma default value for CLI (#328)
* Fix simpo default * Bump
1 parent 5151fd5 commit 2d8a0d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api"
1212

1313
[tool.poetry]
1414
name = "together"
15-
version = "1.5.14"
15+
version = "1.5.15"
1616
authors = ["Together AI <[email protected]>"]
1717
description = "Python client for Together's Cloud Platform!"
1818
readme = "README.md"

src/together/cli/api/finetune.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def fine_tuning(ctx: click.Context) -> None:
163163
@click.option(
164164
"--simpo-gamma",
165165
type=float,
166-
default=0.1,
166+
default=0.0,
167167
help="SimPO gamma parameter (only used when '--training-method' is 'dpo')",
168168
)
169169
@click.option(

0 commit comments

Comments
 (0)