From 8925c6e79c1f5ea2b65a806abee08648ed1462a2 Mon Sep 17 00:00:00 2001 From: Arsh Zahed Date: Thu, 12 Sep 2024 14:10:03 -0700 Subject: [PATCH] Make MIN_SAMPLES=1 (#185) Co-authored-by: Arsh Zahed --- src/together/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/together/constants.py b/src/together/constants.py index bc6af83..b4c9cf3 100644 --- a/src/together/constants.py +++ b/src/together/constants.py @@ -19,7 +19,7 @@ Find your TOGETHER_API_KEY at https://api.together.xyz/settings/api-keys""" # Minimum number of samples required for fine-tuning file -MIN_SAMPLES = 100 +MIN_SAMPLES = 1 # the number of bytes in a gigabyte, used to convert bytes to GB for readable comparison NUM_BYTES_IN_GB = 2**30