together 1.5.15__py3-none-any.whl → 1.5.17__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -139,7 +139,7 @@ def fine_tuning(ctx: click.Context) -> None:
139
139
  @click.option(
140
140
  "--dpo-beta",
141
141
  type=float,
142
- default=0.1,
142
+ default=None,
143
143
  help="Beta parameter for DPO training (only used when '--training-method' is 'dpo')",
144
144
  )
145
145
  @click.option(
@@ -154,7 +154,7 @@ def fine_tuning(ctx: click.Context) -> None:
154
154
  @click.option(
155
155
  "--rpo-alpha",
156
156
  type=float,
157
- default=0.0,
157
+ default=None,
158
158
  help=(
159
159
  "RPO alpha parameter of DPO training to include NLL in the loss "
160
160
  "(only used when '--training-method' is 'dpo')"
@@ -163,7 +163,7 @@ def fine_tuning(ctx: click.Context) -> None:
163
163
  @click.option(
164
164
  "--simpo-gamma",
165
165
  type=float,
166
- default=0.0,
166
+ default=None,
167
167
  help="SimPO gamma parameter (only used when '--training-method' is 'dpo')",
168
168
  )
169
169
  @click.option(
@@ -188,7 +188,7 @@ def fine_tuning(ctx: click.Context) -> None:
188
188
  @click.option(
189
189
  "--train-on-inputs",
190
190
  type=BOOL_WITH_AUTO,
191
- default="auto",
191
+ default=None,
192
192
  help="Whether to mask the user messages in conversational data or prompts in instruction data. "
193
193
  "`auto` will automatically determine whether to mask the inputs based on the data format.",
194
194
  )
@@ -229,10 +229,10 @@ def create(
229
229
  confirm: bool,
230
230
  train_on_inputs: bool | Literal["auto"],
231
231
  training_method: str,
232
- dpo_beta: float,
232
+ dpo_beta: float | None,
233
233
  dpo_normalize_logratios_by_length: bool,
234
- rpo_alpha: float,
235
- simpo_gamma: float,
234
+ rpo_alpha: float | None,
235
+ simpo_gamma: float | None,
236
236
  from_checkpoint: str,
237
237
  ) -> None:
238
238
  """Start fine-tuning"""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: together
3
- Version: 1.5.15
3
+ Version: 1.5.17
4
4
  Summary: Python client for Together's Cloud Platform!
5
5
  License: Apache-2.0
6
6
  Author: Together AI
@@ -7,7 +7,7 @@ together/cli/api/chat.py,sha256=2PHRb-9T-lUEKhUJFtc7SxJv3shCVx40gq_8pzfsewM,9234
7
7
  together/cli/api/completions.py,sha256=l-Zw5t7hojL3w8xd_mitS2NRB72i5Z0xwkzH0rT5XMc,4263
8
8
  together/cli/api/endpoints.py,sha256=f6KafWZvRF6n_ThWdr3y9uhE6wPF37PcD45w_EtgXmY,13289
9
9
  together/cli/api/files.py,sha256=QLYEXRkY8J2Gg1SbTCtzGfoTMvosoeACNK83L_oLubs,3397
10
- together/cli/api/finetune.py,sha256=kyeJHT1hYRVGne10bgaGkSbg5w1hctb1eI2ZyI39cH8,17063
10
+ together/cli/api/finetune.py,sha256=GyG_syK_ctzSnXgO6RgQy4tHbPtAaB9j-mQmnWJq5cg,17085
11
11
  together/cli/api/images.py,sha256=GADSeaNUHUVMtWovmccGuKc28IJ9E_v4vAEwYHJhu5o,2645
12
12
  together/cli/api/models.py,sha256=CXw8B1hqNkadogi58GIXhLg_dTJnvTBaE7Kq1_xQ-10,1423
13
13
  together/cli/api/utils.py,sha256=IuqYWPnLI38_Bqd7lj8V_SnGdYc59pRmMbQmciS4FsM,1326
@@ -62,8 +62,8 @@ together/utils/api_helpers.py,sha256=2K0O6qeEQ2zVFvi5NBN5m2kjZJaS3-JfKFecQ7SmGaw
62
62
  together/utils/files.py,sha256=btWQawwXbNKfPmCtRyObZViG1Xx-IPz45PrAtMXvcy8,16741
63
63
  together/utils/tools.py,sha256=H2MTJhEqtBllaDvOyZehIO_IVNK3P17rSDeILtJIVag,2964
64
64
  together/version.py,sha256=p03ivHyE0SyWU4jAnRTBi_sOwywVWoZPU4g2gzRgG-Y,126
65
- together-1.5.15.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
66
- together-1.5.15.dist-info/METADATA,sha256=6IoLxG4cHz3BdVuTxz8bDI2MNmd1dnZPeC4UNKDBNKQ,15497
67
- together-1.5.15.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
68
- together-1.5.15.dist-info/entry_points.txt,sha256=G-b5NKW6lUUf1V1fH8IPTBb7jXnK7lhbX9H1zTEJXPs,50
69
- together-1.5.15.dist-info/RECORD,,
65
+ together-1.5.17.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
66
+ together-1.5.17.dist-info/METADATA,sha256=b_DHVFaWDUPFcPHSminvXGJ3THG4CLZTwXqR8OpW9aY,15497
67
+ together-1.5.17.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
68
+ together-1.5.17.dist-info/entry_points.txt,sha256=G-b5NKW6lUUf1V1fH8IPTBb7jXnK7lhbX9H1zTEJXPs,50
69
+ together-1.5.17.dist-info/RECORD,,