Skip to content
#

Jupyter Notebook

jupyter-notebook logo

The Jupyter Notebook is a language-agnostic HTML notebook application for Project Jupyter. Jupyter notebooks are documents that allow for creating and sharing live code, equations, visualizations, and narrative text together. People use them for data cleaning and transformation, numerical simulation, statistical modeling, data visualization, machine learning, and much more.

Here are 7,977 public repositories matching this topic...

ecotner
ecotner commented Apr 4, 2020

I just started going through the jupyter notebooks (great stuff, by the way), and when running the cells the first time I would always get some error like Polygon has no attribute normed. It turns out that the normed option in plt.hist has been deprecated (in matplotlib version 3.1.1 and later as far as I can tell), and should instead be replaced with density (they appear to operate simi

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].

loomlike
loomlike commented Apr 15, 2019

Description

Add Azure notebook to our SETUP doc.
I tested google colab and Azure notebook to run reco-repo without requiring creating any DSVM or compute by myself, and it works really well with simple tweaks to the notebooks (e.g. for some libs, should install manually).

I think it would be good to add at least Azure notebook to our SETUP doc, where users can easily test out our repo w/o

holgersson32644
holgersson32644 commented May 2, 2020

Hi, I stumbled over a bug resp. mistake in your documentation.

Bug description

Your setup documentation contains call of

sudo echo something > file

which is ..well..entirely wrong. sudo echo will write to stdout, then the redirection with ">" will write it with user rights and this will fail as this example wants to add a debian repo to a location where only root can write.

jupytext
mwouts
mwouts commented Feb 12, 2020

This was initially a question by @lwasser on Twitter: Is anyone using a tool that "cleans" or tests @ProjectJupyter notebooks for things like extra imports, PEP 8, etc etc?

It would be interesting to describe what we can do with jupytext at the command line, and also, what can be done with pre-commit hooks.

Regarding the comma

computervision-recipes
ptiger10
ptiger10 commented Jun 3, 2019

Coming from a Python-in-Jupyter background, I notice that Tab works as you would expect (reveals all available methods/attributes), but Shift+Tab (signature hinting) does not. I could not find documentation on this. Is Shift+Tab not supported, or is my setup is incorrect?

Example:

type Foo struct {
    name string
    description string
}
func (f Foo) Qux(s string) string {
   

Created by Jupyter Developers

Released December 2011

Latest release 3 days ago

Repository
jupyter/notebook
Website
jupyter.org

Related Topics

jupyter
You can’t perform that action at this time.