Coder Social home page Coder Social logo

aind2-rnn's People

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

Watchers

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

aind2-rnn's Issues

Syntax warning nb_epoch

The rest of the calls to fit use the updated api epochs

But one call toward the bottom get a deprecated syntax warning.

model.fit(Xlarge, ylarge, batch_size=500, nb_epoch=30,verbose = 1)

UserWarning: The nb_epoch argument in fit has been renamed epochs.

Should be updated to

model.fit(Xlarge, ylarge, batch_size=500, epochs=30,verbose = 1)

Unit test error during udacity submit

Units tests use cleaned_text from my_answers, while it named clean_text both in my_answers.py and RNN_project.ipynb

Udacity submit output:
Failed Test: Step 3: Clean up a large text corpus

NameError: name 'cleaned_text' is not defined

Goal inputs for `window_transform_series` do not match udacity_pa tests

In the notebook it shows that goal for window_transform_series(odd_nums) is displayed as:

--- the input X will look like ----
[[ 1  3]
 [ 3  5]
 [ 5  7]
 [ 7  9]
 [ 9 11]
 [11 13]]

But the project assistant seems to be looking for below and will fail if the output matches above.

[[ 1  3]
 [ 3  5]
 [ 5  7]
 [ 7  9]
 [ 9 11]]

Which is correct?

Thanks.

General Spelling/ Theory Improvements

  1. Section 1.2 and 2.3 describe windows of length 5, but both discuss input vector of length 4 which seems like an error.
  2. Beneath "dogs are great" gif analogous is spelt analaogous.
  3. In section 2.3 "One-hot encoding characters" the first sentence reads:

There's just one last issue we have to deal with before tackle: machine learning algorithm deal with numerical data and all of our input/output pairs are characters

which doesn't make sense.

Happy to contribute to repo if required.

Unit tests use incorrect parameter name for build_part1_RNN()

Correct specification of build_part1_RNN(): def build_part1_RNN(step_size, window_size)
Unit tests performed during udacity submit do not supply window_size, that leads to following error:

Failed Test: Step 2: Create a simple RNN model for regression

TypeError: build_part1_RNN() missing 1 required positional argument: 'window_size'

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.