Git Product home page Git Product logo

deep-learning-coursera-complete's Introduction

Deep Learning Specialization on Coursera

Instructor: Andrew Ng

Just completed Deep Learning Specialization on Coursera, using this repo to keep a record of all my completed coursework and related files. I will start writing up on each topic with additional links I have been learning from.

Please observe the Coursera honour code.

Currently, these are not standalone Jupyter Notebook, I will try to add some of the dependencies back later as I tidy up the whole set. I will fix broken images too.

I will also add quiz answers eventually too.

Running your own Jupyter Notebook online (free for 2 months)

Use DigitalOcean to play around with Python using Jupyter Notebook. Just need to follow this guide to set it up https://www.digitalocean.com/community/tutorials/how-to-set-up-jupyter-notebook-for-python-3. Use my referral link and receive $100 in credit for 60 days immediately as new user, enough to run quite a powerful 4CPUs 8GB RAM 160GB SSD instance for 2 months, remember to kill it before end of 60 days. Let me know if you need help with the setup. https://m.do.co/t/b298d6966c0c I get some free credit (not cash) to run my server there if you sign up using the link.

Course Video on YouTube

If you are in mainland China or can't access YouTube, can try to watch the videos on NetEase 网易云课堂.

Beyond Deep Learning Specialization

deep-learning-coursera-complete's People

Contributors

eplt 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

deep-learning-coursera-complete's Issues

conv_single_step()函数实现有问题(第4门课程《卷积神经网络》第一次作业Convolution Model-Step by Step)

函数conv_single_step()实现中:

应该是 W*X 先求和,在加偏置b,而不是每一个wi * xi 都加一个b

# START CODE HERE ### (≈ 2 lines of code)
# Element-wise product between a_slice and W. Do not add the bias yet.
s = a_slice_prev * W
# Sum over all entries of the volume s.
Z = np.sum(s)
# Add bias b to Z. Cast b to a float() so that Z results in a scalar value.
Z = Z + float(b)
# ## END CODE HERE ###

这样应该才对

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.