Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit 4fa84d8

Browse files
author
Wang Bo
authored
chore: bump client to 0.6.2 (#562)
1 parent b94df24 commit 4fa84d8

3 files changed

Lines changed: 18 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
### Added
1212

13+
### Removed
14+
15+
### Changed
16+
17+
### Fixed
18+
19+
### Docs
20+
21+
22+
## [0.6.2] - 2022-09-29
23+
24+
### Added
25+
1326
- Support inference with torch models. ([#560](https://github.com/jina-ai/finetuner/pull/560))
1427

1528
### Removed

docs/walkthrough/integrate-with-jina.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ run = finetuner.get_run(
8585
)
8686
8787
f = Flow().add(
88-
uses='jinahub+docker://FinetunerExecutor/v0.10.1', # use v0.10.1-gpu for gpu executor.
88+
uses='jinahub+docker://FinetunerExecutor/v0.10.2', # use v0.10.2-gpu for gpu executor.
8989
uses_with={'artifact': run.artifact_id, 'token': token},
9090
)
9191
```
@@ -95,7 +95,7 @@ f = Flow().add(
9595
from jina import Flow
9696
9797
f = Flow().add(
98-
uses='jinahub+docker://FinetunerExecutor/v0.10.1', # use v0.10.1-gpu for gpu executor.
98+
uses='jinahub+docker://FinetunerExecutor/v0.10.2', # use v0.10.2-gpu for gpu executor.
9999
uses_with={'artifact': '/mnt/YOUR-MODEL.zip'},
100100
volumes=['/your/local/path/:/mnt'] # mount your model path to docker.
101101
)
@@ -108,7 +108,7 @@ with:
108108
port: 51000
109109
protocol: grpc
110110
executors:
111-
uses: jinahub+docker://FinetunerExecutor/v0.10.1
111+
uses: jinahub+docker://FinetunerExecutor/v0.10.2
112112
with:
113113
artifact: 'COPY-YOUR-ARTIFACT-ID-HERE'
114114
token: 'COPY-YOUR-TOKEN-HERE' # or better set as env
@@ -224,7 +224,7 @@ run = finetuner.get_run(
224224
)
225225

226226
f = Flow().add(
227-
uses='jinahub+docker://FinetunerExecutor/v0.10.1', # use v0.10.1-gpu for gpu executor.
227+
uses='jinahub+docker://FinetunerExecutor/v0.10.2', # use v0.10.2-gpu for gpu executor.
228228
uses_with={
229229
'artifact': run.artifact_id, 'token': token, 'select_model': 'clip-vision'
230230
},

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
version = 0.6.1
2+
version = 0.6.2
33

44
[flake8]
55
# E501 is too long lines - ignore as black takes care of that

0 commit comments

Comments
 (0)