We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description Implement a Matrix from scratch
Proposed Solution
Additional Context / Resources
Wikipedia Link: https://en.wikipedia.org/wiki/Matrix_(mathematics)
3Blue1Brow Linear Algebra Series: https://www.3blue1brown.com/topics/linear-algebra
The text was updated successfully, but these errors were encountered:
Here is a suggested structure from GPT:
rustic_ml/ ├── Cargo.toml └── src ├── lib.rs ├── neural_network │ ├── mod.rs │ ├── layers.rs │ ├── activation_functions.rs │ └── training.rs ├── data_processing │ ├── mod.rs │ ├── normalization.rs │ └── splitting.rs └── utils ├── mod.rs ├── helpers.rs ├── matrix.rs └── math.rs
Edit: moved away from this structure, but a good suggestion
Sorry, something went wrong.
Created new issues related to functions that does not seem necessary to implement yet:
Successfully merging a pull request may close this issue.
🚀 Feature: Matrix
Description
Implement a Matrix from scratch
Proposed Solution
Additional Context / Resources
Wikipedia Link:
https://en.wikipedia.org/wiki/Matrix_(mathematics)
3Blue1Brow Linear Algebra Series:
https://www.3blue1brown.com/topics/linear-algebra
The text was updated successfully, but these errors were encountered: