The Wayback Machine - https://web.archive.org/web/20200717013359/https://github.com/topics/jupyter
Skip to content
#

jupyter

Here are 2,229 public repositories matching this topic...

homemade-machine-learning
alqbib
alqbib commented Mar 31, 2019

Vectorized version of gradient descent.

theta = theta * reg_param - alpha * (1 / num_examples) * (delta.T @ self.data).T

We should NOT regularize the parameter theta_zero.

theta[0] = theta[0] - alpha * (1 / num_examples) * (self.data[:, 0].T @ delta).T

the first code line ,theta include theta[0].
so I think can write like this:
theta[0] -= alpha * (1 / num_examples) * (self.data[:, 0].

dash
AidLearning-FrameWork

🔥🔥AidLearning build Linux environment running on the Android devices with GUI, Deep-Learning and Python Visual Programming support. Now support VSCode,Jupyter, pyToApk! One-click install.🚀
  • Updated May 18, 2020
  • Python
socialcyberdog
socialcyberdog commented Feb 21, 2020

Hydrogen just gives me this error message when trying to run python code:

No kernel for grammar Python found

Check that the language for this file is set in Atom, that you have a Jupyter kernel installed for it, and that you have configured the language mapping in Hydrogen preferences.

To detect your current Python install you will need to run:

python -m pip install ipykernel
pytho

Improve this page

Add a description, image, and links to the jupyter topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the jupyter topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.