Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
artek0chumak committed Sep 25, 2024
1 parent e3b2cea commit cf9f2c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
5 changes: 0 additions & 5 deletions src/together/resources/finetune.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,6 @@ def create(

assert isinstance(response, TogetherResponse)

# TODO: Remove after next LoRA default change
log_warn(
"Some of the jobs run _directly_ from the together-python library might be trained using LoRA adapters. "
"The version range when this change occurred is from 1.2.3 to 1.2.6."
)

return FinetuneResponse(**response.data)

Expand Down
3 changes: 2 additions & 1 deletion src/together/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from together.utils._log import log_debug, log_info, log_warn, logfmt
from together.utils._log import log_debug, log_info, log_warn, log_warn_once, logfmt
from together.utils.api_helpers import default_api_key, get_headers
from together.utils.files import check_file
from together.utils.tools import (
Expand All @@ -18,6 +18,7 @@
"log_debug",
"log_info",
"log_warn",
"log_warn_once",
"logfmt",
"enforce_trailing_slash",
"normalize_key",
Expand Down

0 comments on commit cf9f2c4

Please sign in to comment.