Skip to content

Commit

Permalink
📝 fix invalid format
Browse files Browse the repository at this point in the history
Signed-off-by: vankichi <kyukawa315@gmail.com>
  • Loading branch information
vankichi committed Jun 16, 2022
1 parent 9ee84fd commit 884b6ca
Showing 1 changed file with 18 additions and 20 deletions.
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 884b6ca

Please sign in to comment.