raskr / rust-autograd

Tensors and differentiable operations (like TensorFlow) in Rust
MIT License
487 stars 37 forks source link

Use of 'extern crate' in examples #52

Closed ravi-maithrey closed 3 years ago

ravi-maithrey commented 3 years ago

All the examples in the repo use extern crate autograd or extern crate ndarray which is deprecated and not recommended since rust 2018.

It should be a simple fix to update these in all instances.

raskr commented 3 years ago

Thank you, fixed.