• Stars
    star
    202
  • Rank 192,520 (Top 4 %)
  • Language
    Python
  • License
    MIT License
  • Created over 6 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple TensorFlow-like graph computation framework in Python for learning purpose

SimpleFlow

A simple TensorFlow-like graph computation framework in Python for learning purpose

Quick Start

import simpleflow as sf

# Create a graph
with sf.Graph().as_default():
    a = sf.constant(1.0, name='a')
    b = sf.constant(2.0, name='b')
    result = sf.add(a, b, name='a+b')

    # Create a session to run the graph 
    with sf.Session() as sess:
        print(sess.run(result))

Examples

Features

  • Computational Graph
  • Feed forward propagation
  • Backpropagation
  • GradientDescent Optimizer
  • Linear Regression Example
  • MNIST classification Example

Blogs