diff options
author | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-07-27 14:48:32 +0200 |
---|---|---|
committer | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-08-01 14:26:02 +0200 |
commit | 5bc5716b85b1ae22794698d8381df50d6afcf0bc (patch) | |
tree | 3b36f03d2fb53f4e49b91056b187b1917e1be699 /candle-book | |
parent | ba37de94d43ba2f2e640b0dce4993f5600c9a525 (diff) | |
download | candle-5bc5716b85b1ae22794698d8381df50d6afcf0bc.tar.gz candle-5bc5716b85b1ae22794698d8381df50d6afcf0bc.tar.bz2 candle-5bc5716b85b1ae22794698d8381df50d6afcf0bc.zip |
Revert "Making sure the CI actually works"
This reverts commit 699346b603cec1f279d94e9aa3210c193ba973f8.
Diffstat (limited to 'candle-book')
-rw-r--r-- | candle-book/src/guide/hello_world.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-book/src/guide/hello_world.md b/candle-book/src/guide/hello_world.md index a29edff6..393576ad 100644 --- a/candle-book/src/guide/hello_world.md +++ b/candle-book/src/guide/hello_world.md @@ -6,7 +6,7 @@ Open `src/main.rs` and fill in with these contents: ```rust # extern crate candle; -use candle::{DType, Device, Result, Tensor, xx}; +use candle::{DType, Device, Result, Tensor}; struct Model { first: Tensor, |