Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.8 KB

ROADMAP.md

File metadata and controls

27 lines (20 loc) · 1.8 KB

Roadmap

This document describes the roadmap for tensflow.rb.

Code Climate Join the chat at https://gitter.im/Arafatk/tensorflow.rb Inline docs

Simpler things to get started:

  • Polish the README based on your experiences on setting up the project, so it becomes easier for the next to join.
  • Add any missing specs you see. Some of the methods in Graph, Session, Tensor should probably also be private if only called from within the class. If not, they must be tested.
  • Similar to 2. above, several methods could be cleaned up, and be written more ruby like (e.g. no () if no args and prefer key: :value over :key => :value.

More advanced/new features:

  • Look at the Basic Usage tutorial. What are we missing to be able to complete this?
    • tf.Variable, please look at the pull request here.
    • tf.Constant, please look at the pull request here.
    • tf.random_uniform
    • tf.zeros
    • tf.reduce_mean
    • tf.train.GradientDescentOptimizer
    • Default graph support, to avoid the need for explicit graph creation
    • A better API for Tensorflow Math ops
    • A blog explaining how to use google protobuf to make graphs in ruby itself and then run them. This will be released soon.