Skip to content

Commit

Permalink
update tutorial images (#1704)
Browse files Browse the repository at this point in the history
* 🎨 update tutorial images

Signed-off-by: vankichi <[email protected]>

* 📝 fix invalid format

Signed-off-by: vankichi <[email protected]>
  • Loading branch information
vankichi authored Jun 16, 2022
1 parent 23de8c1 commit 417abed
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 23 deletions.
2 changes: 1 addition & 1 deletion assets/docs/tutorial/getstarted.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion assets/docs/tutorial/tutorial.drawio

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/docs/tutorial/vald-agent-standalone-on-k8s.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 18 additions & 20 deletions docs/tutorial/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -404,28 +404,26 @@ If you are interested in, please refer to [SDKs](../user-guides/sdks.md).<br>
1. Remove
- Remove 400 indexed training datasets from the Vald agent.
<details><summary>example code</summary><br>
```go
for i := range ids [:insertCount] {
_, err := client.Remove(ctx, &payload.Remove_Request{
Id: &payload.Object_ID{
Id: ids[i],
},
})
if err != nil {
glg.Fatal(err)
}
if i%10 == 0 {
glg.Infof("Removed %d", i)
}
}
```
- Remove 400 indexed training datasets from the Vald agent.
<details><summary>example code</summary><br>
</details>
```go
for i := range ids [:insertCount] {
_, err := client.Remove(ctx, &payload.Remove_Request{
Id: &payload.Object_ID{
Id: ids[i],
},
})
if err != nil {
glg.Fatal(err)
}
if i%10 == 0 {
glg.Infof("Removed %d", i)
}
}
```
</details>
</details>
## Cleanup
Expand Down

0 comments on commit 417abed

Please sign in to comment.