Jupyter Notebook

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...
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
-
Updated
Jun 4, 2020 - Jupyter Notebook
-
Updated
Feb 18, 2020 - Jupyter Notebook
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].
-
Updated
Jan 10, 2020 - HTML
-
Updated
Mar 31, 2020
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
-
Updated
Jan 5, 2020 - Jupyter Notebook
It appears that the "stylish" browser extension is now considered to be spyware. See:
- https://meta.stackoverflow.com/a/294045/11750716 (end of post)
- https://github.com/openstyles/stylus/wiki/FAQ#what-are-the-main-differences-and-improvements-over-the-original-stylish-add-on
Please replace with a reference to "stylus" browser extension.
Most items coming from questions on the community forum
- a proper multicategory bar example based on https://community.plotly.com/t/multicategory-axis-type-example/26392
- example of shape or annotation covering several subplots thanks to
xref='paper'
. Also the shapes and annotations tutorial should link to each other. - orthographic projection example in 3d axes tutorial (or
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.
-
Updated
Jun 1, 2020 - Jupyter Notebook
-
Updated
Jun 2, 2020 - Jupyter Notebook
We've got quite a few standardized labels configured in our GitHub but no documentation on which labels to use and when.
We should add a "Labeling Issues" section to our CONTRIBUTING.md so this informational is accessible to people.
inspired by #101
Once we merge in new robustness transforms, crop_to_size
should probably be in the default transforms. We still want to allow not passing it, but should probably warn in that case.
-
Updated
May 8, 2018 - Jupyter Notebook
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
-
Updated
May 19, 2020 - Jupyter Notebook
-
Updated
Nov 12, 2019 - Jupyter Notebook
How to use Watcher / WatcherClient over tcp/ip network?
Watcher seems to ZMQ server, and WatcherClient is ZMQ Client, but there is no API/Interface to config server IP address.
Do I need to implement a class that inherits from WatcherClient?
- Explain in notebook/FAQ what non-maxima suppression is what values to set (threshold on IoU)
- Explain and provide code how to pick a good score threshold (reuse Patrick's plot which was implemented for the drone demo)
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 {
我跟着pytorch那个版本改写成了tensorflow版本,当然,可能有错误或者使用不当的函数,希望相互指教,或者能对你们有帮助。
colab地址:https://colab.research.google.com/drive/1u5EUfErT-3G76vy7CMbXs7-tbJF4els5
-
Updated
Jun 10, 2020 - Jupyter Notebook
Use this checklist to track logstash wiki and documentation
- Update https://github.com/Cyb3rWard0g/HELK/wiki/Create-Plugins-Offline-Package
- Update HELK overview picture
- remove alien vault integration
- update with new indexes #256
- document catch all for windows
- document indexme catch all
- some general guideline on X amount of devices and or X amo
lgo does not complete import paths now.
We want to complete import paths for these patterns:
import [cur]
import (
[cur]
import "a/b[cur]
import "[cur]
-
Updated
Jan 30, 2020 - Jupyter Notebook
-
Updated
May 17, 2020 - Jupyter Notebook
Created by Jupyter Developers
Released December 2011
Latest release 3 days ago
- Repository
- jupyter/notebook
- Website
- jupyter.org
In the PCA section there is the following quote:
While not inaccurate (150 componen