Skip to content
#

jupyter

Here are 2,117 public repositories matching this topic...

cxrodgers
cxrodgers commented Jan 30, 2020

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

homemade-machine-learning
alqbib
alqbib commented Mar 31, 2019

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

bokeh
dash
romainx
romainx commented Apr 24, 2020

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

AidLearning-FrameWork

🔥🔥AidLearning build Linux environment running on the Android devices with GUI, Deep-Learning and Python Visual Programming support. Now support VSCode,Jupyter, pyToApk! One-click install.🚀

  • Updated May 18, 2020
  • Python
socialcyberdog
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
PyMap
PyMap commented Apr 13, 2020

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

mouradmourafiq
mouradmourafiq commented May 2, 2020

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

happy-code-com
happy-code-com commented Mar 19, 2020

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.

image

ptiger10
ptiger10 commented Jun 3, 2019

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 {
   
minrk
minrk commented Mar 5, 2020

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

Improve this page

Add a description, image, and links to the jupyter topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the jupyter topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.