Palash Tyagi
|
4c626bf09c
|
Add leaky_relu and dleaky_relu functions with corresponding unit tests
|
2025-07-06 20:00:17 +01:00 |
|
Palash Tyagi
|
ab6d5f9f8f
|
Refactor test module imports in LinReg to improve clarity
|
2025-07-06 19:17:09 +01:00 |
|
Palash Tyagi
|
1c8fcc0bad
|
Refactor LogReg implementation for improved readability by adjusting formatting and organizing imports
|
2025-07-06 19:17:03 +01:00 |
|
Palash Tyagi
|
2ca496cfd1
|
Add repeat_rows method to Matrix and corresponding unit test
|
2025-07-06 19:16:46 +01:00 |
|
Palash Tyagi
|
85154a3be0
|
Add shape method to Matrix and corresponding unit test
|
2025-07-06 18:58:38 +01:00 |
|
Palash Tyagi
|
54a266b630
|
Add unit tests for logistic regression fit and predict methods
|
2025-07-06 18:52:49 +01:00 |
|
Palash Tyagi
|
4ddacdfd21
|
Add unit tests for linear regression fit and predict methods
|
2025-07-06 18:52:15 +01:00 |
|
Palash Tyagi
|
37b20f2174
|
Add unit tests for activation functions: sigmoid, relu, dsigmoid, and drelu
|
2025-07-06 17:51:43 +01:00 |
|
Palash Tyagi
|
b279131503
|
Add model modules for linear regression, logistic regression, dense neural network, k-means, PCA, and Gaussian Naive Bayes
|
2025-07-06 17:43:17 +01:00 |
|
Palash Tyagi
|
eb948c1f49
|
Add Gaussian Naive Bayes implementation with fit and predict methods
|
2025-07-06 17:43:04 +01:00 |
|
Palash Tyagi
|
d4c0f174b1
|
Add PCA implementation with fit and transform methods
|
2025-07-06 17:42:56 +01:00 |
|
Palash Tyagi
|
b6645fcfbd
|
Add Gaussian Naive Bayes implementation with fit and predict methods
|
2025-07-06 17:42:45 +01:00 |
|
Palash Tyagi
|
b1b7e63fea
|
Add Dense Neural Network implementation with forward and training methods
|
2025-07-06 17:42:08 +01:00 |
|
Palash Tyagi
|
e2c5e65c18
|
move rand from dev-deps to deps
|
2025-07-06 17:41:56 +01:00 |
|
Palash Tyagi
|
be41e9b20e
|
Add logistic regression model implementation
|
2025-07-06 17:41:14 +01:00 |
|
Palash Tyagi
|
1501ed5b7a
|
Add linear regression model implementation
|
2025-07-06 17:40:55 +01:00 |
|
Palash Tyagi
|
dbbf5f9617
|
Add activation functions: sigmoid, dsigmoid, relu, and drelu
|
2025-07-06 17:40:41 +01:00 |
|
Palash Tyagi
|
6718cf5de7
|
Add compute module and update lib.rs to include it
|
2025-07-06 17:40:04 +01:00 |
|
Palash Tyagi
|
f749b2c921
|
Add method to retrieve a specific row from the matrix and corresponding tests
|
2025-07-06 17:38:24 +01:00 |
|
Palash Tyagi
|
04637ef4d0
|
Add methods to create zero, one, and filled matrices for f64 type
|
2025-07-06 17:05:46 +01:00 |
|
|
11330e464b
|
Merge pull request #56 from Magnus167/add-examples
Add examples for map and zip methods in README
|
2025-07-06 11:34:42 +01:00 |
|
Palash Tyagi
|
162a09fc22
|
Add examples for map and zip methods in README
|
2025-07-06 11:33:38 +01:00 |
|
|
5db5475a61
|
Merge pull request #55 from Magnus167/map-zip
Implement `map` and `zip` methods for SeriesOps and Frame
|
2025-07-06 10:56:11 +01:00 |
|
Palash Tyagi
|
2da1e9bf04
|
Fix dimension mismatch assertion in zip method and add panic test for incompatible matrices
|
2025-07-06 10:54:23 +01:00 |
|
Palash Tyagi
|
601dc66d7d
|
Add panic test for frame_zip method with incompatible dimensions
|
2025-07-06 10:47:21 +01:00 |
|
Palash Tyagi
|
073a22b866
|
Add frame_map and frame_zip methods to Frame struct with corresponding tests
|
2025-07-06 01:55:49 +01:00 |
|
Palash Tyagi
|
ffa1a76df4
|
Implement map and zip methods for SeriesOps trait and add corresponding tests
|
2025-07-06 01:55:45 +01:00 |
|
Palash Tyagi
|
621632b7d2
|
Implement map and zip methods for SeriesOps trait and add corresponding tests
|
2025-07-06 01:55:35 +01:00 |
|
Palash Tyagi
|
64e578fae2
|
Add examples for matrix multiplication, dot product, and transpose in README
|
2025-07-06 01:21:30 +01:00 |
|
|
f44bb5b205
|
Merge pull request #54 from Magnus167/fix-benchmark
Update benchmarks and fix README formatting
|
2025-07-06 01:00:48 +01:00 |
|
Palash Tyagi
|
fde9c73a66
|
Fix README formatting by commenting out logo image line
|
2025-07-06 00:53:31 +01:00 |
|
Palash Tyagi
|
85e0eb7e67
|
Update benchmarks to use Axis enum for apply_axis method
|
2025-07-06 00:53:27 +01:00 |
|
|
b8e64811ed
|
Merge pull request #53 from Magnus167/matrix-ops-enhancement
Updates to matrix operations for SeriesOps trait
|
2025-07-06 00:46:09 +01:00 |
|
Palash Tyagi
|
2ac2db258f
|
Add tests for matrix multiplication and transpose operations in Frame
|
2025-07-06 00:38:22 +01:00 |
|
Palash Tyagi
|
7a68d13eb3
|
Change transpose method to take an immutable reference
|
2025-07-06 00:38:14 +01:00 |
|
Palash Tyagi
|
f39c678192
|
Add test for matrix multiplication error handling and create 4x4 test matrix with NaNs
|
2025-07-06 00:38:07 +01:00 |
|
Palash Tyagi
|
ad9f89860e
|
Add benchmarks for matrix and frame operations including multiplication, summation, product, application along axes, and transposition
|
2025-07-06 00:23:03 +01:00 |
|
Palash Tyagi
|
ef574892fa
|
Add transpose method to Frame for matrix transposition
|
2025-07-06 00:22:41 +01:00 |
|
Palash Tyagi
|
30bff6ecf4
|
Add transpose method to Frame for matrix transposition
|
2025-07-06 00:22:10 +01:00 |
|
Palash Tyagi
|
9daf583a4d
|
Implement matrix multiplication and dot product methods for SeriesOps in Frame<f64>
|
2025-07-05 21:07:46 +01:00 |
|
Palash Tyagi
|
1ebc3546d2
|
Refactor assertions for clarity in Matrix methods and update test cases for consistency
|
2025-07-05 21:07:32 +01:00 |
|
Palash Tyagi
|
ffe635f1c4
|
Add transpose method and corresponding tests for Matrix
|
2025-07-05 21:07:21 +01:00 |
|
Palash Tyagi
|
75f194b8c9
|
Implement matrix multiplication and dot product methods for FloatMatrix in SeriesOps trait
|
2025-07-05 20:44:16 +01:00 |
|
Palash Tyagi
|
3e279b8138
|
Fix image height attribute in README.md
|
2025-07-05 15:35:16 +01:00 |
|
Palash Tyagi
|
a06725686f
|
using http api instead of gh cli
|
2025-07-05 15:34:31 +01:00 |
|
Palash Tyagi
|
7106f6ccf7
|
Add a blank line at the beginning of README.md for better formatting
|
2025-07-05 00:58:31 +01:00 |
|
Palash Tyagi
|
95911fb0ef
|
Fix GitHub token reference for downloading benchmark report
|
2025-07-05 00:56:53 +01:00 |
|
Palash Tyagi
|
84b7fc8eec
|
Fix GitHub token reference for downloading benchmark report
|
2025-07-05 00:53:22 +01:00 |
|
|
7a580327e8
|
Merge pull request #52 from Magnus167/updating-example
Updating example
|
2025-07-05 00:51:25 +01:00 |
|
Palash Tyagi
|
1e908b0ac5
|
Fix token handling for downloading benchmark report in workflow
|
2025-07-05 00:50:10 +01:00 |
|