#
jupyter
Here are 2,229 public repositories matching this topic...
Interactive Data Visualization in the browser, from Python
visualization
javascript
python
plots
jupyter
visualisation
data-visualisation
bokeh
plotting
notebooks
interactive-plots
numfocus
-
Updated
Jul 16, 2020 - Python
A neural network that transforms a design mock-up into a static website.
machine-learning
deep-learning
jupyter
keras
jupyter-notebook
cnn
lstm
floydhub
seq2seq
cnn-keras
encoder-decoder
-
Updated
Jan 10, 2020 - HTML
vnepveu
commented
Mar 24, 2020
On the chapter about Editable DataTable
we can find this :
This chapter includes recipes for:
Reading the contents of the DataTable
Filtering out null values
Uploading data
Determining which cell has changed
Adding or removing columns
Adding or removing rows
Clearable, deletable, renamable, and hideable colum
Machine Learning Toolkit for Kubernetes
kubernetes
machine-learning
jupyter
notebook
tensorflow
ml
minikube
google-kubernetes-engine
kubeflow
-
Updated
Jul 16, 2020 - Jsonnet
List of Data Science Cheatsheets to rule the world
-
Updated
Oct 31, 2019
Custom Jupyter Notebook Themes
css
syntax-highlighting
theme
jupyter
jupyter-notebook
serif-font
jupyter-themes
thematic-adjustments
-
Updated
May 15, 2020 - CSS
Set up deep learning environment in a single command line.
caffe
lasagne
theano
deep-learning
jupyter
mxnet
chainer
cntk
tensorflow
docker-image
keras
torch
pytorch
caffe2
sonnet
dockerfile-generator
onnx
-
Updated
Jun 10, 2020 - Python
Create HTML profiling reports from pandas DataFrame objects
python
data-science
machine-learning
statistics
deep-learning
jupyter
pandas-dataframe
exploratory-data-analysis
jupyter-notebook
eda
pandas
artificial-intelligence
exploration
data-analysis
html-report
data-exploration
pandas-profiling
data-quality
data-profiling
big-data-analytics
-
Updated
Jul 16, 2020 - Jupyter Notebook
Ready-to-run Docker images containing Jupyter applications
-
Updated
Jul 16, 2020 - Python
react
data-science
jupyter
notebook
ipython
zeromq
repl
react-components
jupyter-notebook
nteract
monorepo
desktop-application
-
Updated
Jul 17, 2020 - TypeScript
A mindmap summarising Machine Learning concepts, from Data Analysis to Deep Learning.
-
Updated
May 30, 2020
android
python
linux
terminal
jupyter
userland
vscode
artificial-intelligence
face-recognition
object-detection
termux
python-for-android
face-landmark
handpose
linux-android
linux-on-android
android-hacking
fingerpose
termux-desktop
py2apk
-
Updated
May 18, 2020 - Python
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
Debugging, monitoring and visualization for Python Machine Learning and Data Science
python
debugging
data-science
machine-learning
reinforcement-learning
ai
monitoring
deep-learning
jupyter
jupyter-notebook
debug
machinelearning
deeplearning
debugging-tool
saliency
explainable-ai
explainable-ml
model-visualization
-
Updated
May 15, 2020 - Jupyter Notebook
Plotting library for IPython/Jupyter notebooks
-
Updated
Jul 9, 2020 - TypeScript
Machine Learning Platform for Kubernetes
kubernetes
workflow
data-science
machine-learning
caffe
reinforcement-learning
ai
deep-learning
jupyter
mxnet
notebook
tensorflow
keras
ml
pipelines
pytorch
artificial-intelligence
k8s
jupyterlab
polyaxon
-
Updated
Jul 16, 2020 - Python
The Go kernel for Jupyter notebooks and nteract.
go
golang
data-science
machine-learning
kernel
jupyter
zeromq
jupyter-notebook
nteract
artificial-intelligence
numerical-methods
gophernotes
-
Updated
Jun 7, 2020 - Go
This extension is now maintained in the Microsoft fork.
python
testing
editor
typescript
terminal
jupyter
linter
extract
visual-studio-code
python-3-6
intellisense
scientific
sort-imports
refactorings
pylint
python-terminal
autopep8
rename-refactorings
pydocstyle
-
Updated
Jul 16, 2020 - TypeScript
Resource scheduling and cluster management for AI
kubernetes
machine-learning
cloud
ai
jupyter
chainer
tensorflow
gpu
scheduling
pytorch
artificial-intelligence
resource-management
model-training
on-premise
cluster-manager
gpu-cluster
cluster-management
ai-frameworks
-
Updated
Jul 16, 2020 - JavaScript
A curated list of awesome Jupyter projects, libraries and resources
visualization
python
awesome
frontend
jupyter
ipython
jupyter-notebook
jupyterhub
awesome-list
jupyterlab
jupyterlab-extension
-
Updated
Jul 13, 2020
Tools for diffing and merging of Jupyter notebooks.
git
diff
jupyter
version-control
jupyter-notebook
mercurial
merge
vcs
diffing
hg
mergetool
merge-driver
jupyterlab-extension
-
Updated
Mar 10, 2020 - Python
nbconvert as a web service: Render Jupyter Notebooks as static web pages
-
Updated
May 28, 2020 - Python
nlp
machine-learning
natural-language-processing
course
binder
jupyter
gatsby
spacy
named-entity-recognition
online-course
dependency-parsing
gatsbyjs
word-vectors
part-of-speech-tagging
-
Updated
Jul 15, 2020 - Python
Improve this page
Add a description, image, and links to the jupyter topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the jupyter topic, visit your repo's landing page and select "manage topics."


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