Download Latest Version v0.8.1.zip (2.8 MB)
Email in envelope

Get an email when there's a new version of finetuner

Home / v0.8.1
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2023-07-26 1.8 kB
v0.8.1.tar.gz 2023-07-26 2.7 MB
v0.8.1.zip 2023-07-26 2.8 MB
Totals: 3 Items   5.5 MB 0

Release Note Finetuner 0.8.1

This release covers Finetuner version 0.8.1, including dependency finetuner-core 0.13.10.

This release contains 1 new feature, 1 refactoring and 1 documentation improvement.

🆕 Features

Add Jina Tiny Embedding model

We have included jina-embedding-t-en-v1 in our list of supported models. This very small embedding model, comprising 14 million parameters, offers lightning-fast inference on CPUs.

In our experiments, it was able to encode 1730 sentences per second on a Macbook Pro Core-i5, making it perfectly suitable for edge devices. To utilize the Tiny model, follow these steps:

:::python
!pip install finetuner
import finetuner

model = finetuner.build_model('jinaai/jina-embedding-t-en-v1')
embeddings = finetuner.encode(
    model=model,
    data=['how is the weather today', 'What is the current weather like today?']
)
print(finetuner.cos_sim(embeddings[0], embeddings[1]))

âš™ Refactoring

Remove typing-extensions from Finetuner dependencies

We have eliminated the dependency on typing-extensions due to compatibility issues when using the Finetuner on Google Colab.

📗 Documentation Improvements

Add Tiny model and technical report to Finetuner Readme and Docs. (https://github.com/jina-ai/finetuner/pull/763)

We have updated the documentation page to include information about jina-embedding-t-en-v1. We have also added technical reports and citation details to the README and documentation page.

🤟 Contributors

We would like to thank all contributors to this release: - Wang Bo (@bwanglzu) - Louis Milliken (@LMMilliken) - Michael Günther (@guenthermi) - George Mastrapas (@gmastrapas) - Scott Martens (@scott-martens)

Source: README.md, updated 2023-07-26