Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

PytLab/simpleflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

32 Commits

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /