Giter Club home page Giter Club logo

coursera-deep-learning's Introduction


A series of online courses offered by deeplearning.ai. I would like to say thanks to Prof. Andrew Ng and his colleagues for spreading knowledge to normal people and great courses sincerely.

Reminder


The reason I would like to create this repository is purely for academic use (in case for my future use). I am really glad if you can use it as a reference and happy to discuss with you about issues related with the course even for further deep learning techniques.

Please only use it as a reference. The quiz and assignments are relatively easy to answer, hope you can have fun with the courses.

1. Neural Network and Deep Learning

2. Improving Deep Neural Networks-Hyperparameter tuning, Regularization and Optimization

3. Structuring Machine Learning Projects

4. Convolutional Neural Network

5. Sequence Models


Author

Haibin Yu/ @HeroKillerEver

coursera-deep-learning's People

Contributors

adi273628 avatar alexsomai avatar amanpri avatar farhansadaf avatar herokillerever avatar sudeeep885 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

coursera-deep-learning's Issues

Week1 quiz 7 answer

Hi
I think the answer should be 151516. Since it first apply a pooling with stride of 2, it becomes 161616, then a filter with size 2, then (16-2)+1 * (16-2)+1 *16. What do you think?

Wrong Answer on CNN Week 2 Quiz

The answer to the 8th question seems to be wrong.

Suppose you have an input volume of dimension nH x nW x nC. Which of the following statements you agree with? (Assume that “1x1 convolutional layer” below always uses a stride of 1 and no padding.)

You can use a 1x1 convolutional layer to reduce nC but not nH, nW.

You can use a 1x1 convolutional layer to reduce nH, nW, and nC.

You can use a pooling layer to reduce nH, nW, but not nC.

You can use a pooling layer to reduce nH, nW, and nC.

The second option regarding pooling layers has been highlighted with the wrong answer:
It should be: You can use a pooling layer to reduce nH, nW, but not nC.
and not: You can use a pooling layer to reduce nH, nW, and nC.

Week 1: The basics of ConvNets quiz question no 9

Question No 9:
In lecture, we talked about “parameter sharing” as a benefit of using convolutional networks. Which of the following statements about parameter sharing in ConvNets are true? (Check all that apply.)

  1. It allows parameters learned for one task to be shared even for a different task (transfer learning).
  2. It reduces the total number of parameters, thus reducing overfitting.
  3. It allows gradient descent to set many of the parameters to zero, thus making the connections sparse.
  4. It allows a feature detector to be used in multiple locations throughout the whole input image/input volume.

The answer should be:

  • It reduces the total number of parameters, thus reducing overfitting.

  • It allows a feature detector to be used in multiple locations throughout the whole input image/input volume.

Code error in Face Recognition Notebook

In the verify graded function under the Facial Recognition assignment notebook of the CNNs course, one of the graded code fields in not filled in:

 if None:
        print("It's " + str(identity) + ", welcome home!")
        door_open = True
    else:
        print("It's not " + str(identity) + ", please go away")
        door_open = False

The None should be replaced with

    if dist<0.7
        print("It's " + str(identity) + ", welcome home!")
        door_open = True
    else:
        print("It's not " + str(identity) + ", please go away")
        door_open = False```

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.