Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
calpt committed Aug 10, 2024
1 parent 251a853 commit 7d2da38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def deps_list(*pkgs):

setup(
name="adapters",
version="1.0.0.dev0",
version="1.0.0",
author="The AdapterHub team and community contributors",
author_email="calpt@mail.de",
description="A Unified Library for Parameter-Efficient and Modular Transfer Learning",
Expand Down
2 changes: 1 addition & 1 deletion src/adapters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "1.0.0.dev0"
__version__ = "1.0.0"

from typing import TYPE_CHECKING

Expand Down
2 changes: 1 addition & 1 deletion tests/test_adapter_trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def tokenize(element):
model.config.use_cache = False

adapters.init(model)
model.add_adapter("task")
model.add_adapter("task", config=config)
model.train_adapter("task")

model.adapter_to("task", device=torch_device)
Expand Down

0 comments on commit 7d2da38

Please sign in to comment.