Skip to content
New issue

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

[FEAT] Matrix implementation #6

Closed
4 tasks done
KjetilIN opened this issue May 25, 2024 · 2 comments · Fixed by #29
Closed
4 tasks done

[FEAT] Matrix implementation #6

KjetilIN opened this issue May 25, 2024 · 2 comments · Fixed by #29
Labels
enhancement New feature or request

Comments

@KjetilIN
Copy link
Owner

KjetilIN commented May 25, 2024

🚀 Feature: Matrix

Description
Implement a Matrix from scratch

Proposed Solution

  • Struct for matrix
  • Traits with methods
  • Research and find all methods required
  • Write comprehensive unit tests

Additional Context / Resources

Wikipedia Link:
https://en.wikipedia.org/wiki/Matrix_(mathematics)

3Blue1Brow Linear Algebra Series:
https://www.3blue1brown.com/topics/linear-algebra

@KjetilIN KjetilIN added the enhancement New feature or request label May 25, 2024
@KjetilIN
Copy link
Owner Author

KjetilIN commented May 25, 2024

Overall Structure of Lib:

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

@KjetilIN
Copy link
Owner Author

@KjetilIN KjetilIN linked a pull request May 29, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant