Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 081 #764

Merged
merged 2 commits into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Docs


## [0.8.1] - 2023-07-26

### Added

### Removed

### Changed

### Fixed

### Docs

- Add tiny model and citation to Readme and docs. ([#763](https://github.com/jina-ai/finetuner/pull/763))

- Fix huggingface link of jina embeddings. ([#761](https://github.com/jina-ai/finetuner/pull/761))
Expand Down
1 change: 1 addition & 0 deletions docs/walkthrough/choose-backbone.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ to get a list of supported models:
┏━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ name ┃ task ┃ output_dim ┃ architecture ┃ description ┃
┑━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
β”‚ jina-embedding-t-en-v1 β”‚ text-to-text β”‚ 312 β”‚ transformer β”‚ Text embedding model trained using Linnaeus-Clean dataset by Jina AI β”‚
β”‚ jina-embedding-s-en-v1 β”‚ text-to-text β”‚ 512 β”‚ transformer β”‚ Text embedding model trained using Linnaeus-Clean dataset by Jina AI β”‚
β”‚ jina-embedding-b-en-v1 β”‚ text-to-text β”‚ 768 β”‚ transformer β”‚ Text embedding model trained using Linnaeus-Clean dataset by Jina AI β”‚
β”‚ jina-embedding-l-en-v1 β”‚ text-to-text β”‚ 1024 β”‚ transformer β”‚ Text embedding model trained using Linnaeus-Clean dataset by Jina AI β”‚
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
version = 0.8.0
version = 0.8.1

[flake8]
# E501 is too long lines - ignore as black takes care of that
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
setup_requires=['setuptools>=18.0', 'wheel'],
install_requires=[
'docarray[common]<0.30.0',
'finetuner-stubs==0.13.9',
'finetuner-commons==0.13.9',
'finetuner-stubs==0.13.10',
'finetuner-commons==0.13.10',
],
extras_require={
'full': [
Expand Down
Loading