Releases: togethercomputer/together-python
Releases · togethercomputer/together-python
v0.2.6
What's Changed
- Data feedback rdme by @clam004 in #21
- Fix typo in error message of error code 429 in Complete.py by @rchalamala in #22
- Price estimate for FT jobs by @adamsch1 in #23
- add support for 70b by @adamsch1 in #24
- Enable WandB option in the CLI by @justusc in #25
- Remove 70B models (not yet supported) by @justusc in #26
- version update by @clam004 in #27
- Add 70B models support for fine tuning job submission by @justusc in #28
- Add negative prompt as a param for image models by @orangetin in #31
- Add a minimum for finetune create batch size by @justusc in #32
- version by @clam004 in #33
- together models ready model_name, but using the API instead by @clam004 in #34
- Timestamp formats by @clam004 in #36
- Fix circular imports by @orangetin in #38
- Version bump to 0.2.4 by @orangetin in #39
- Clean up fixed constants available with api call and add new functions by @orangetin in #40
- Confirm Finetune Job by @clam004 in #41
- updates finetune input resets to the October 70b update by @clam004 in #42
- Deduplicate Utils by @clam004 in #43
- Do not show the stack trace when user as no API key by @clam004 in #46
- Add max batch size check by @azahed98 in #47
- Replace ValueError for max batchsize with ajusted_inputs=True by @azahed98 in #48
- typing errors with python <3.9 by @clam004 in #49
- Tabulate outputs for JSON outputs by @orangetin in #50
- Initial tests for files and fine-tuning by @orangetin in #51
- Enable retries for file uploads and finetune downloads by @orangetin in #52
- Handle errors gracefully by @orangetin in #53
- Pypi push on github release creation by @orangetin in #54
- Fix poetry install by @orangetin in #55
- Fix poetry build by @orangetin in #56
New Contributors
- @rchalamala made their first contribution in #22
- @adamsch1 made their first contribution in #23
- @azahed98 made their first contribution in #47
Full Changelog: v0.1.5...v0.2.6
v0.1.5
v0.1.4
v0.1.4 - 2023-08-18
Full Changelog: v0.0.9...v0.1.4
Changes
- Step by step guidance and examples added to documentation for the completion, files, and finetune sections, including example jsonl dataset that can be downloaded locally for inspection, automated checking and uploading
- optional but very useful together.Files.check function to check the correctness of jsonl files. Gives useful feeback on which first line that is formatted incorrectly, will give the specific reason for being the line being incorrect and how to fix it with a helpful link
- model specific token option to check if model specific tokens are used in dataset
- together.Finetune.create will give useful feedback if user tries to upload anything other than a valid file-id for a file they already have uploaded successfully
Here is an example file check output:
{ 'file_present': 'File found',
'file_size': 'File size 0.2 GB',
'is_check_passed': False,
'key_value': 'Unexpected, value type for "text" key on line 6 of the input '
'file.The value type of the "text" key must be a '
'string.Expected format: {"text":"my sample string"}See '
'https://docs.together.ai/docs/fine-tuning for more '
'information.{"text": {"text":"<human>: Salutations!\\n<bot>: '
'Salutations to you as well! How can I help you today?"}}\n',
'min_samples': 'Processing /Users/carsonlam/Projects/data/bad.jsonl '
'resulted in only 10 samples. Our minimum is 100 samples. ',
'model_special_tokens': 'we are not yet checking end of sentence tokens '
'for this model',
'num_samples_w_eos_token': 0,
'text_field': 'No "text" field was found on line 7 of the the input '
'file.Expected format: {"text":"my sample string"}.see '
'https://docs.together.ai/docs/fine-tuning for more '
'information.{"ext": "<human>: Hiya!\\n<bot>: Hiya! How may '
'I assist you?"}\n'}
v0.1.3
v0.1.3 - 2023-08-11
Full Changelog: v0.0.9...v0.1.3
Changes
- Users can now add their weights and biases WANDB_API_KEY
- For fine-tuning, users indicate the number of checkpoints using the
--n-checkpoints
parameter
here is an example:
together finetune create -t file-960be810-4d33-449a-885a-9f69bd8fd0e2 -m togethercomputer/LLaMA-2-7B-32K --n-checkpoints 2 --wandb-api-key 1123456789abcdefghijklmnop
v0.1.2
v0.1.1
v0.1.1 - 2023-07-28
Full Changelog: v0.0.9...v0.1.1
Changes
- Checkpoint download fixes for zst
- Colored logging
- Fixed class return and init behavior
- Add models class and listing information options
- Update prompt_id and response_id for inference
- Updated files progress bar descriptions
- Updated descriptions for image generation downloading
- Add user-agent
- Update readme