-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from iryna-kondr/cot_classifier
Added the chain of thought classifier
- Loading branch information
Showing
8 changed files
with
174 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ dependencies = [ | |
"google-cloud-aiplatform[pipelines]>=1.27.0,<2.0.0" | ||
] | ||
name = "scikit-llm" | ||
version = "1.2.0" | ||
version = "1.3.0" | ||
authors = [ | ||
{ name="Oleh Kostromin", email="[email protected]" }, | ||
{ name="Iryna Kondrashchenko", email="[email protected]" }, | ||
|
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,2 +1,2 @@ | ||
__version__ = '1.2.0' | ||
__version__ = '1.3.0' | ||
__author__ = 'Iryna Kondrashchenko, Oleh Kostromin' |
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,24 @@ | ||
## GPT | ||
|
||
from skllm.models.gpt.classification.zero_shot import ( | ||
ZeroShotGPTClassifier, | ||
MultiLabelZeroShotGPTClassifier, | ||
CoTGPTClassifier, | ||
) | ||
from skllm.models.gpt.classification.few_shot import ( | ||
FewShotGPTClassifier, | ||
DynamicFewShotGPTClassifier, | ||
MultiLabelFewShotGPTClassifier, | ||
) | ||
from skllm.models.gpt.classification.tunable import ( | ||
GPTClassifier as TunableGPTClassifier, | ||
) | ||
|
||
## Vertex | ||
from skllm.models.vertex.classification.zero_shot import ( | ||
ZeroShotVertexClassifier, | ||
MultiLabelZeroShotVertexClassifier, | ||
) | ||
from skllm.models.vertex.classification.tunable import ( | ||
VertexClassifier as TunableVertexClassifier, | ||
) |
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
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,8 @@ | ||
## GPT | ||
from skllm.models.gpt.text2text.summarization import GPTSummarizer | ||
from skllm.models.gpt.text2text.translation import GPTTranslator | ||
from skllm.models.gpt.text2text.tunable import TunableGPTText2Text | ||
|
||
## Vertex | ||
|
||
from skllm.models.vertex.text2text.tunable import TunableVertexText2Text |
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 @@ | ||
from skllm.models.gpt.vectorization import GPTVectorizer |