Crates.io | vikos |
lib.rs | vikos |
version | 0.3.1 |
source | src |
created_at | 2016-09-08 11:26:49.263622 |
updated_at | 2019-01-22 01:43:45.811595 |
description | A machine learning library for supervised training of parametrized models |
homepage | |
repository | https://github.com/blue-yonder/vikos |
max_upload_size | |
id | 6286 |
size | 66,048 |
Vikos is a library for supervised training of parameterized, regression, and classification models
Just starting to get the traits right, by continuously trying new use cases and implementing the learning algorithms. If you are looking for more mature rust libraries in the domain of ML, you might want to check out:
Install the rust package manager cargo
. Goto rustup and follow the instructions on
the page (in my experience this works fine for Windows, Ubuntu and OS X).
Run cargo new --bin hello_vikos
.
switch to the hello_vikos
directory.
Run cargo run
to execute the hello world program.
Edit the Cargo.toml
file. Add vikos = "0.2"
to your dependencies. The file should
now look somewhat like this:
[package]
name = "hello_vikos"
version = "0.2"
authors = ["..."]
[dependencies]
vikos = "0.1.8"
Insert use vikos;
at the first line in src/main.rs
You can now start replacing code in main
with code from the tutorial.
fn main() {
/* tutorial code goes here */
}
Thanks to the folks of docs.rs for building and hosting the documentation!
Want to help out? Just create an issue, pull request or contact markus.klein@blue-yonder.com.