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,742 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
May 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.
fig.append_trace() raises ValueError if the row arg is not type int, even if arg is int-like:
DEBUG row:1, type(row):<class 'numpy.int64'>
If I explicitly cast to int with row=int(row), all is well. The issue may be due to the isinstance check at line 1536 of basedatatypes.py?
/usr/local/lib/python3.7/site-packages/plotly/basedatatypes.py in _validate_rows_cols(name, n, vals)
1535
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
May 12, 2020 - Jupyter Notebook
-
Updated
May 19, 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.
-
Updated
May 8, 2018 - Jupyter Notebook
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.
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 {
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
我跟着pytorch那个版本改写成了tensorflow版本,当然,可能有错误或者使用不当的函数,希望相互指教,或者能对你们有帮助。
colab地址:https://colab.research.google.com/drive/1u5EUfErT-3G76vy7CMbXs7-tbJF4els5
As Mauri commented in the Spanish slack channel, ALL links are broken on index.md, as they point to .../es/es/...
instead of .../es/...
Eg:
https://atcold.github.io/pytorch-Deep-Learning/es/es/week01/01-1
Index md shows only one es/
<td><a href="es/week01/01-1">Historia y motivación</a></td>
Not sure if we should remove it (as it would point at the main file in eng
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 over 1 year ago
- Repository
- jupyter/notebook
- Website
- jupyter.org
In the PCA section there is the following quote:
While not inaccurate (150 componen