dfdx
dfdx copied to clipboard
Deep learning in Rust, with shape checked tensors and neural networks
This might potentially depend on Reshape, but it would be good to compute mean/sum across arbitrary dimensions by letting mean/sum take `dim` or `axis` as an argument just like how...
Tracking issue for next release - [x] #34 - [x] #55 - [ ] #1 - [ ] #67 - [x] #123 - [ ] #115 - [x] #111 -...
Unit tests should be easy to scan. large arrays make this almost impossible and add a lot of bloat. _Originally posted by @coreylowman in https://github.com/coreylowman/dfdx/pull/120#discussion_r929261072_
Closes #1 - [x] Add tests for conv2d & batch_conv2d - [x] Add tests for Conv2D layer - [ ] Add example file - [ ] Clean up implementation
This has been lightly discussed in some of the PRs as confusion has come up. Probably will want to link this in the README too, as I imagine this will...
In NLP, tokens are converted from tensors of `usize` to tensors of `f32`, where each `usize` is an index into a "library" of token embedding vectors. I'm pretty sure the...