mirror of
https://github.com/wassname/peft.git
synced 2026-09-26 14:00:37 +08:00
21 lines
499 B
Python
21 lines
499 B
Python
# flake8: noqa
|
|
# There's no way to ignore "F401 '...' imported but unused" warnings in this
|
|
# module, but to preserve other warnings. So, don't check this module at all.
|
|
|
|
__version__ = "0.1.0.dev0"
|
|
|
|
from .pet_model import (
|
|
PETModel,
|
|
PETModelForSequenceClassification,
|
|
PETModelForCausalLM,
|
|
PETModelForSeq2SeqLM,
|
|
PromptEncoderType,
|
|
)
|
|
from .tuners import (
|
|
PrefixEncoder,
|
|
PromptEmbedding,
|
|
PromptEncoder,
|
|
PromptEncoderReparameterizationType,
|
|
PromptTuningInit,
|
|
)
|