jupyter
Here are 2,117 public repositories matching this topic...
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].
The requirement to no longer specify source
in the args dict tripped me (a layman) up when using a script that worked in 1.40 in 2.0.2. I couldn't work out what was wrong so I asked in a StackOverflow thread where @bryevdv ex
-
Updated
Jan 10, 2020 - HTML
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
/kind feature
Persona: Infrastructure Engineer
Control Plane Walkthrough:
- Install Kubeflow with (istio) KfDefs
- Install Kubeflow with dex - pending
- Configure / Get Istio IngressGateway endpoint
- Create profiles (w/ kubectl) #4725
- Create notebooks from user-namespace (w/ kubectl)
- Login (port-forward) into notebook as user
- Create TFJob (w/ kubec
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.
-
Updated
Oct 31, 2019
-
Updated
May 25, 2020 - Python
-
Updated
May 25, 2020 - Jupyter Notebook
Hello,
The objective is to write a troubleshooting page for know issues.
Cases identified
Here is the list of identified known issues.
Permission denied when mounting local folders
This is a recurring issue, there is a PR (#1078) in progress to update the documentation
- #885
- #1003
Container launching issue
In recent issues (#1035, #1057) the same problem and th
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 30, 2020
-
Updated
May 18, 2020 - Python
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
Hi all!,
Just want to share with the team some details I've been experiencing while I executed notebooks from command line using a yaml file.
First, let me show my case. I've bee parametrizing different notebooks to isolate data wranlging processes. To do it, I needed to use lists of dictionaries to specifiy keys describing my data, such as area or paths where some files were stored. As all
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?
This project is now independent, and as a result will need a documented governance process. This issue is the place to discuss that.
Feature motivation
Azure storage client is backward incompatible, there's an issue #757 for upgrading the azure connection to the latest client. The new version has an async interface that can be leveraged for the streams module, at least for downloads.
N.B. This is likely a 3~4h work and not a pressing need, so just putting this in the backlog.
Feature implementation
There's a
Good day
I have a problem connecting the presto driver
%%classpath add mvn
com.facebook.presto presto-base-jdbc 0.232
%defaultDatasource jdbc:presto://root@127.0.0.1:8282/hive/default
I can not figure it out and I can not see the full error trace.
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 {
Would be really good to have some troubleshooting guide for using this tool to it's full extent!
-
Updated
May 30, 2020 - TypeScript
-
Updated
May 6, 2020
FAQ failing with 500
Rendering the FAQ page is currently failing with 500:
File "/Users/benjaminrk/dev/jpy/nbviewer/nbviewer/templates/faq.md", line 1, in top-level template code
{% extends "layout.html" %}
File "/Users/benjaminrk/dev/jpy/nbviewer/nbviewer/templates/layout.html", line 113, in top-level template code
</div>
File "/Users/benjaminrk/dev/jpy/nbviewer/nbviewer/templates/layo
If I set my nbdime_config.json
to:
{
"Global": {
"Ignore": {
"/cells/*/execution_count": false
},
"details": false
}
}
I expect the details
and Ignore
to be applied to every nbdime tool, given that
Global Options to apply to all commands.
[sections](https://github.com/jupyter/nbdime/blob/d44e3b5d09ba16163d71ef38e98f288c0a88b391/docs/
-
Updated
May 20, 2020 - Python
from https://github.com/root-project/cling/blob/master/tools/Jupyter/README.md :
export PATH=/cling-install-prefix/bin:$PATH
cd /cling-install-prefix/share/cling/Jupyter/kernel
maybe should be replaced with
export PATH=$PATH:/cling-install-prefix/bin
cd /cling-install-prefix/share/cling/Jupyter/kernel
because cling is required but not clang.
The clang binary mus
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."
Note 1: This is not the same tab-completion bug for which many issues have already been opened (the one where a massive number of objects from the global namespace are displayed). This issue specifically has to do with unwanted abbreviation of filename paths. I haven't yet found any other reports of this issue.
Note 2: I also posted this to stackoverflow but am posting again here since I didn't