summaryrefslogtreecommitdiff
path: root/candle-nn/examples/basic_optimizer.rs
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-08-20 18:19:37 +0100
committerGitHub <noreply@github.com>2023-08-20 18:19:37 +0100
commita1812f934f4e0830ed3c2f147d13837ccf67f2bd (patch)
tree529c8c5896548f035ac58a8c453dc1049cc17a40 /candle-nn/examples/basic_optimizer.rs
parente3d2786ffbd8926cff2789162ad10ac3c4989160 (diff)
downloadcandle-a1812f934f4e0830ed3c2f147d13837ccf67f2bd.tar.gz
candle-a1812f934f4e0830ed3c2f147d13837ccf67f2bd.tar.bz2
candle-a1812f934f4e0830ed3c2f147d13837ccf67f2bd.zip
Add a yolo-v3 example. (#528)
* Add a couple functions required for yolo. * Add the yolo-v3 example. * Add minimum and maximum. * Use the newly introduced maximum. * Cuda support for min/max + add some testing. * Allow for more tests to work with accelerate. * Fix a typo.
Diffstat (limited to 'candle-nn/examples/basic_optimizer.rs')
-rw-r--r--candle-nn/examples/basic_optimizer.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/candle-nn/examples/basic_optimizer.rs b/candle-nn/examples/basic_optimizer.rs
index cd5824dd..093bda81 100644
--- a/candle-nn/examples/basic_optimizer.rs
+++ b/candle-nn/examples/basic_optimizer.rs
@@ -1,3 +1,9 @@
+#[cfg(feature = "mkl")]
+extern crate intel_mkl_src;
+
+#[cfg(feature = "accelerate")]
+extern crate accelerate_src;
+
use candle::{DType, Device, Result, Tensor};
use candle_nn::{linear, AdamW, Linear, Module, ParamsAdamW, VarBuilder, VarMap};