forked from ai-hero/llm-research-fine-tuning
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create finetuningresearch python package, allowing it to be pip insta…
…lled
- Loading branch information
1 parent
e6b4a15
commit 163d193
Showing
8 changed files
with
51 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,36 @@ | ||
[project] | ||
name = "Fine-Tuning Reserch" | ||
name = "finetuningresearch" | ||
version = "0.1.0" | ||
description = "Open source research on fine-tuning LLMs" | ||
authors = ["Rahul Parundekar <[email protected]>", "Shankar Ganesan <[email protected]>"] | ||
license = "MIT" | ||
authors = [ | ||
{name = "Rahul Parundekar", email= "[email protected]" }, | ||
{name = "Shankar Ganesan", email = "[email protected]" } | ||
] | ||
readme = "README.md" | ||
homepage = "https://aihero.studio" | ||
repository = "https://github.com/ai-hero/fine_tune_research" | ||
classifiers = [ | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"License :: OSI Approved :: MIT License", | ||
] | ||
dependencies = [ | ||
"transformers>=4.35.0", | ||
"peft>=0.5.0", | ||
"bitsandbytes>=0.41.1", | ||
"accelerate>=0.25.0", | ||
"trl>=0.7.2", | ||
"pydantic-settings>=2.0.3", | ||
"scipy>=1.11.3", | ||
"PyYAML>=6.0.1", | ||
"datasets>=2.14.6", | ||
"einops>=0.7.0", | ||
"wandb>=0.15.12", | ||
"python-dotenv", | ||
"minio>=7.2.0", | ||
"fire", | ||
"types-PyYAML" | ||
] | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "-vvv" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"""Helps finetune models.""" | ||
from .sft import execute | ||
|
||
__all__ = ["execute"] |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.