21 Commits

Author SHA1 Message Date
Palash Tyagi
98df4ffa65 Merge cd3aa84e60 into c53693fa7b 2025-08-05 18:30:27 +01:00
c53693fa7b Merge pull request #72 from Magnus167/release/a20250805
Bump version to 0.0.1-a.20250805 in Cargo.toml
2025-08-05 00:11:57 +01:00
109d39b248 Merge branch 'main' into release/a20250805 2025-08-05 00:08:27 +01:00
Palash Tyagi
18ad6c689a Bump version to 0.0.1-a.20250805 in Cargo.toml 2025-08-05 00:06:49 +01:00
cd3aa84e60 Merge branch 'main' into csv 2025-07-06 11:35:13 +01:00
27275e2479 Merge branch 'main' into csv 2025-07-06 11:05:20 +01:00
9ef719316a Merge branch 'main' into csv 2025-07-06 01:04:10 +01:00
960fd345c2 Merge branch 'main' into csv 2025-07-04 00:59:25 +01:00
325e75419c Merge branch 'main' into csv 2025-06-07 13:38:30 +01:00
b1dc18d05b Merge branch 'main' into csv 2025-05-15 18:35:46 +01:00
8cbb957764 Merge branch 'main' into csv 2025-05-13 00:08:38 +01:00
b937ed1cdf Merge branch 'main' into csv 2025-05-11 02:00:25 +01:00
2e071a6974 Merge branch 'main' into csv 2025-05-05 02:13:15 +01:00
689169bab2 Merge branch 'main' into csv 2025-05-05 02:01:45 +01:00
a45a5ecf4e Merge branch 'main' into csv 2025-05-04 02:29:12 +01:00
84e1b423f4 Merge branch 'main' into csv 2025-05-04 02:10:55 +01:00
197739bc2f Merge branch 'main' into csv 2025-05-04 01:07:58 +01:00
d2c2ebca0f Merge branch 'main' into csv 2025-05-03 01:32:05 +01:00
f5f3f2c100 Merge branch 'main' into csv 2025-05-02 23:38:37 +01:00
9fcb1ea2cf Merge branch 'main' into csv 2025-05-01 01:14:09 +01:00
Palash Tyagi
623303cf72 Update README to include upcoming features for CSV I/O, Date Utils, and more math functions 2025-05-01 01:13:34 +01:00
2 changed files with 8 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
[package]
name = "rustframe"
authors = ["Palash Tyagi (https://github.com/Magnus167)"]
version = "0.0.1-a.20250804"
version = "0.0.1-a.20250805"
edition = "2021"
license = "GPL-3.0-or-later"
readme = "README.md"

View File

@@ -50,6 +50,12 @@ The `compute` module provides implementations for various statistical computatio
- Logistic Regression
- Principal Component Analysis
### Coming soon
- **CSV I/O** - read/write CSV files with a simple API.
- **Date Utils** - date math, calendar slicing, indexing, and more.
- **More math** - more math functions and aggregations.
### Heads up
- **Not memoryefficient (yet)** - footprint needs work.
@@ -59,6 +65,7 @@ The `compute` module provides implementations for various statistical computatio
- Optional GPU acceleration (Vulkan or similar) for heavier workloads.
- Straightforward Python bindings using `pyo3`.
- Integration with common ML libraries, or introduce simple ML features.
---