Questions tagged [google-cloud-datalab]

An online tool for data analysis provided by Google as part of its Cloud Platform.

An easy to use interactive tool for large-scale data exploration, analysis, and visualization.

See more at https://cloud.google.com/datalab.

468 questions
6
votes
2 answers

What are the credentials used by Datalab for accessing data?

I have access to a BigQuery table and I can use it from BigQuery console or gcloud command line. But I am unable to write basic queries against it in Datalab and get an access denied error.
Dan Holevoet
  • 9,183
  • 1
  • 33
  • 49
5
votes
3 answers

Unable to import storage from google.cloud

I'm new to Google Cloud Platform, and have uploaded some machine learning code on Jupyter notebook in DataLab. My issue is although, I installed Google Cloud Storage (using the command: pip install --upgrade google-cloud-storage), I'm unable to…
5
votes
1 answer

How to pull notebooks from github to google cloud datalab?

I can connect with my instance through datalab connect sample-lab, how to pull my notebooks in?
5
votes
3 answers

How do I configure Google Cloud Datalab to use GPUs for TensorFlow?

I can import tensorflow and run models inside of Cloud Datalab, but how do I configure it to use GPUs? The documentation here only talks about machines, which I'm not sure how to configure through…
skunkwerk
  • 2,920
  • 2
  • 37
  • 55
5
votes
1 answer

Accessing Big Query from Cloud DataLab using Pandas

I have a Jypyter Notebook accessing Big Query using Pandas as the vehicle: df = pd.io.gbq.read_gbq( query, project_id = 'xxxxxxx-xxxx' ) This works fine from my local machine! (great, in fact!) But when I load the same notebook to Cloud DataLab I…
dartdog
  • 10,432
  • 21
  • 72
  • 121
5
votes
1 answer

How do we connect Azure Machine Learning Studio to Google BigQuery?

We are trying to use Support Vector Machines to do predictions on our dataset but with just 70,000 rows and 7 features - we have tried an SVM on Google DataLabs but our data set is too big to calculate in any reasonable finite time on the DataLabs…
5
votes
1 answer

How to correctly stop Google Cloud Datalab

Playing with data is a joy in Junyper/Datalab, but I do not want it to become costly. Google recommends: "You can minimize compute charges by stopping/restarting Cloud Datalab instances." However, if I stop the AppEngine instance or the Compute…
5
votes
1 answer

Adding python libraries to google datalab environment

I'm using google datalab on google cloud platform. Worked great on the first try and I love how easy it is to now run a jupyter notebook server in the cloud (faster than starting up a localhost server). It's fantastic. But now I want to install…
JHuw
  • 250
  • 2
  • 12
5
votes
2 answers

How do I share my notebooks in DataLab?

DataLab uses a shared service account but I can't see my team members' notebooks. How do we share notebooks between team members?
Graham Wheeler
  • 2,734
  • 1
  • 19
  • 23
4
votes
3 answers

Python Modules & Packages using jupyter notebook in Google Cloud Platform

I'm using Jupyter Notebooks within Google CloudDatalab in Google Cloud Platform for my Python scripts. This creates .ipynb files. I want to be able to create Modules and Packages using Jupyter Notebooks but it is not able to import the scripts. For…
S.Nori
  • 113
  • 11
4
votes
1 answer

Google Datalab read from cloud storage

i know this question has been asked many times but all answers do not fit my request. I would like to retrieve a csv file that is stored into cloud storage from datalab. In order to re-use the code in a normal application i DO NOT want to use the…
4
votes
0 answers

Upload UTF-8 encoded string as CSV to Cloud Storage

I am trying to upload a pandas dataframe as a csv to Google Cloud Storage. The code has to upload the content of the dataframe regardless of the characters it contains. The problem I have is that when the frame contains special characters, such as…
4
votes
1 answer

gcsfuse on datalab vm machine. Error: fusermount: fuse device not found, try 'modprobe fuse' first

I have installed gcsfuse on a datalab machine. Created a target machine and used chmod to allow writing permission to all calling: !gcsfuse --foreground --debug_fuse archs4 /content/datalab/mount/ I am getting the following error: Opening…
eilalan
  • 669
  • 4
  • 20
4
votes
0 answers

Does dash work in Google Cloud Datalab?

Is it possible to run dash apps within Google Cloud Datalab? It says it's running on specific port, but everytime I try to open it, the connection gets refused. It works fine when I try to run it in Jupyter notebook. What could be the source of the…
dannier
  • 65
  • 4
4
votes
1 answer

Loading multiple files from Google Cloud Storage into a single Pandas Dataframe

I have been trying to write a function that loads multiple files from a Google Cloud Storage bucket into a single Pandas Dataframe, however I cannot seem to make it work. import pandas as pd from google.datalab import storage from io import…
1
2
3
31 32