Skip to content

Commit

Permalink
docs: add missing link
Browse files Browse the repository at this point in the history
  • Loading branch information
decahedron1 committed Dec 27, 2024
1 parent 1a50549 commit 68b5e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pages/fundamentals/value.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ let values = Tensor::<f32>::from_array(([4], vec![1., 2., 3., 4.]))?;
let map = Map::new_kv(keys, values)?;
```

`Sequence`s can be [created] from any iterator yielding a `Value` subtype:
`Sequence`s can be [created](https://docs.rs/ort/2.0.0-rc.9/ort/value/type.Sequence.html#method.new) from any iterator yielding a `Value` subtype:
```rs
let tensor1 = Tensor::<f32>::new(&allocator, [1, 128, 128, 3])?;
let tensor2 = Tensor::<f32>::new(&allocator, [1, 224, 224, 3])?;
Expand Down

0 comments on commit 68b5e24

Please sign in to comment.