Skip to content

Commit 87e8586

Browse files
committed
Chiller compilation bounds
1 parent 2e62ef9 commit 87e8586

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "automl"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Chris McComb <ccmcc2012@gmail.com>"]
55
description = "Automated machine learning for classification and regression"
66
edition = "2021"
@@ -20,7 +20,7 @@ itertools = "^0.14"
2020
comfy-table = "^7"
2121
humantime = "^2"
2222
ndarray = {version = "^0.16", optional = true}
23-
polars = {version = "^0.45", features = ["ndarray"], optional = true}
23+
polars = {version = "0.17.0", features = ["ndarray"], optional = true}
2424
url = {version = "^2", optional = true}
2525
temp-file = {version = "0.1.6", optional = true}
2626
csv-sniffer = { version = "^0.3", optional = true }

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,27 @@
44

55
# AutoML with SmartCore
66

7-
AutoML is _Automated Machine Learning_, referring to processes and methods to make machine learning more accessible for
8-
a general audience. This crate builds on top of the [smartcore](https://docs.rs/smartcore/) machine learning framework,
9-
and provides some utilities to quickly train and compare models.
7+
AutoML (_Automated Machine Learning_) streamlines machine learning workflows, making them more accessible and efficient
8+
for users of all experience levels. This crate extends the [`smartcore`](https://docs.rs/smartcore/) machine learning framework, providing utilities to
9+
quickly train, compare, and deploy models.
1010

1111
# Install
1212

13-
To use the latest released version of `AutoML`, add this to your `Cargo.toml`:
13+
Add AutoML to your `Cargo.toml` to get started:
14+
15+
**Stable Version**
1416
```toml
15-
automl = "0.3.0"
17+
automl = "0.3.1"
1618
```
17-
To use the bleeding edge instead, add this:
19+
**Latest Development Version**
1820
```toml
1921
automl = { git = "https://github.com/cmccomb/rust-automl" }
2022
```
2123

22-
# Usage
24+
# Example Usage
25+
26+
Here’s a quick example to illustrate how AutoML can simplify model training and comparison:
2327

24-
Running the following:
2528

2629
```rust
2730
let dataset = smartcore::dataset::breast_cancer::load_dataset();

0 commit comments

Comments
 (0)