Crates.io | sarek |
lib.rs | sarek |
version | 0.1.0 |
source | src |
created_at | 2019-01-08 21:03:30.40613 |
updated_at | 2019-01-08 21:03:30.40613 |
description | A work-in-progress, experimental neural network library utilizing TensorFlow Keras |
homepage | https://github.com/koute/sarek |
repository | https://github.com/koute/sarek |
max_upload_size | |
id | 107510 |
size | 173,863 |
The goal of this crate is to provide a Rust neural network library which is simple, easy to use, minimal, fast and production ready.
This is still experimental! Seriously, I mean it.
Currently this only works on Rust nightly and requires Python 3.7, TensorFlow 1.12, and Numpy 1.15 at runtime as it's using TensorFlow Keras (through Python!). Might work with older versions; no guarantees though.
#![deny(missing_docs)]
In a nutshell a neural network is a mathematical construct which can automatically learn how to transform data from one representation into another one. Say, for example, that you have an old black and white photo of your grandma, and you'd like to colorize it. A neural network can help you with that!
What you would do in such a case is to find a bunch of photos which are already in color and convert them to black and white. You've just got yourself a data set for training a neural network! Now you can tell a neural network - hey, here's a bunch of black and white photos, and here are the same photos but they're in color; please learn how to transform the black and white photos into the color ones!
And that's what the neural network will do. If properly trained your neural network will learn how to generalize, or in other words - it will be able to turn more-or-less any black and white photo into a color one, even if it never saw that particular photo before!
If you want to contribute something significant (especially expose new stuff from TensorFlow) please create an issue first to discuss it. This is not a research-level library, nor it is supposed to be a huge kitchen sink.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.