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 8,384 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
A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in python using Scikit-Learn and TensorFlow.
-
Updated
Jun 4, 2020 - Jupyter Notebook
100-Days-Of-ML-Code中文版
-
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].
A neural network that transforms a design mock-up into a static website.
-
Updated
Jan 10, 2020 - HTML
Dive into Machine Learning with Python Jupyter notebook and scikit-learn!
-
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
PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》)
-
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.
Create HTML profiling reports from pandas DataFrame objects
-
Updated
Jul 4, 2020 - Jupyter Notebook
A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai)
-
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.
利用Python进行数据分析 第二版 (2017) 中文翻译笔记
-
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
Neural Network Distiller by Intel AI Lab: a Python package for neural network compression research. https://nervanasystems.github.io/distiller
-
Updated
Jun 17, 2020 - Jupyter Notebook
Jupyter notebooks from the scikit-learn video series
-
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)
Deep Learning (with PyTorch)
-
Updated
Jul 6, 2020 - Jupyter Notebook
本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的同意
-
Updated
Jun 30, 2020 - Jupyter Notebook
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
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
May 17, 2020 - Jupyter Notebook
A curated list of awesome Jupyter projects, libraries and resources
-
Updated
Jun 15, 2020
Created by Jupyter Developers
Released December 2011
Latest release 30 days ago
- Repository
- jupyter/notebook
- Website
- jupyter.org


In the PCA section there is the following quote:
While not inaccurate (150 componen