Skip to content

Commit

Permalink
docs: add namespace to artifact names (#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
guenthermi committed Jan 12, 2023
1 parent a527c87 commit fb9296d
Show file tree
Hide file tree
Showing 13 changed files with 859 additions and 816 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Add documentation for PointNet++ model and handling 3D mesh dataset. ([#638](https://github.com/jina-ai/finetuner/pull/638))

- Add `finetuner` namespace to artifact names in the documentation. ([#649](https://github.com/jina-ai/finetuner/pull/649))


## [0.6.7] - 2022-11-25

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ finetuner.login()
run = finetuner.fit(
model='resnet50',
run_name='resnet50-tll-run',
train_data='tll-train-data',
train_data='finetuner/tll-train-data',
callbacks=[
EvaluationCallback(
query_data='tll-test-query-data',
index_data='tll-test-index-data',
query_data='finetuner/tll-test-query-data',
index_data='finetuner/tll-test-index-data',
)
],
)
Expand Down
Loading

0 comments on commit fb9296d

Please sign in to comment.