Giter VIP home page Giter VIP logo

tensorflow-exercises's Introduction

TensorFlow Exercises

TensorFlow is arugably the most popular deep learning library as of 2017.

This is designed to help those who want to familiarize themselves with TensorFlow functions. Particulary, I focus on comparing TensorFlow functions with the equivalent functions in NumPy, the de facto standard numerical computation library. I hope this will help you get comfortable with TensorFlow quickly.

The basic outline will be as follows, though this is not 100% fixed.

  • Constants, Sequences, and Random Values (DONE)
  • Graphs (DONE)
  • Variables (DONE)
  • Reading Data (DONE)
  • Tensor Transformations (DONE)
  • Math Part 1 (DONE)
  • Math Part 2 (DONE)
  • Math Part 3 (DONE)
  • Strings (WIP)
  • Control Flow (DONE)
  • Images (WIP)
  • Sparse Tensors (DONE)
  • Neural Network Part 1 (DONE)
  • Neural Network Part 2 (DONE)
  • Neural Network Part 3 (WIP)
  • Seq2Seq (DONE)
  • Audio_Processing (DONE)

Enjoy!

tensorflow-exercises's People

Contributors

joseildofilho avatar kyubyong avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tensorflow-exercises's Issues

reference

Could you list the references please? Thank you.

Error in Seq2Seq_solutions.ipynb

This line has error

loss = tf.nn.sparse_softmax_cross_entropy_with_logits(logits=logits, labels=y)

It should be

loss=tf.nn.softmax_cross_entropy_with_logits(logits=logits,labels=dec_inputs)

Error in math1

Q8.

_x = np.array([1, 2, 3], np.int32)
_y = np.array([4, 5, 6], np.int32)
_z = np.array([7, 8, 9], np.int32)

should add up to [12, 15, 18], given: [9,12, 15]
Also
Q10.
_x = np.array([1, -1]) x = tf.convert_to_tensor(_x) out1 = tf.negative(x) out2 = -x print(out.eval())
should have print(out.eval()) replaced with print(out1.eval())
and the answer is correspondingly:
[-1, 1]

thanks for the great tutorial :)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.