Questions tagged [google-notebook]

Google notebook is an application that works pretty much like notepad for web researchers. It is web based and allows online researchers to organize data online. It has sharing and collaborative capabillities as well. Currently this application has been discontinued in favour of Google Docs.

Google notebook is an application that works pretty much like notepad for web researchers. It is web based and allows online researchers to organize data online. It has sharing and collaborative capabillities as well. Currently this application has been discontinued in favour of Google Docs.

10 questions
11
votes
3 answers

How to import and read a shelve or Numpy file in Google Colaboratory?

I have file.npy and I want to load it in Google Colaboratory Notebook. I already know that I must load the file from Google Drive, however I have no idea how to do so. Any help is welcome
Saeed
  • 742
  • 1
  • 7
  • 21
5
votes
9 answers

which open source project is most like Google Notebook?

As we knew, Google stopped the development of Google Notebook. Though lots of alternatives exist, no one satisfies me (see below for the reasons). Many suggest Google to open source it, but Google didn't response by so far. So I'd like to turn to…
xell
  • 53
  • 1
  • 5
3
votes
3 answers

Add Google user to AI Platform Notebook IAM permission

I have created a notebook instance in Google Cloud AI Platform. I must be missing something super obvious, but could someone tell me how to give a user account permission to access to JupyterLab. I can access it myself in my google account but…
2
votes
1 answer

Unable to resolve "Error: Git server extension is unavailable." (Google Notebooks)

After creating a new notebook instance in the last few days there is an internal error relating to the Git server extension when opened: Internal Error: Fail to get the server root path. Error: Git server extension is unavailable. Please ensure…
1
vote
1 answer

How to set environment variables for a User-managed notebook in Vertex AI

I am trying to set some environment variables for a user managed notebook in google cloud Vertex AI. I don't want to set this from a jupyter notebook itself because I want these environment variables to be available to anyone who opens a jupyter…
0
votes
2 answers

Exporting Google Notebook pages to xml file with utf8 encoding

Google announced that Notebook will be closed soon and the current notebooks will be moved to Google Docs. Instead of using Google Docs, I want to download the content as an xml (atom) file and use some other online service such as one of these.…
petrichor
  • 6,459
  • 4
  • 36
  • 48
0
votes
0 answers

Google colab is not loading

When ever I try to load the Google Colab it doesnt load (no matter what browser I use). The error massage I get is unclear to me. screen shot attatched. thank you!
Omri_sr
  • 9
  • 1
0
votes
0 answers

Google Cloud Notebooks giving Error 524 while making inference

Getting a popup error while making inference in the notebook. Code which gave the error preds=[] spans=list(test['span_text']) for i in range(700,len(spans)): #print(i) try: preds.append(get_prediction(str(spans[i] ))) except: …
0
votes
2 answers

Using the same TPU model for training and inference (prediction) in Google Colab

I have a code something like this: def getModel(): model = Sequential() model.Add(...) ..... model = tf.contrib.tpu.keras_to_tpu_model(model, strategy=tf.contrib.tpu.TPUDistributionStrategy( …
Gokul NC
  • 1,111
  • 4
  • 17
  • 39
0
votes
1 answer

Error in accessing file uploaded file in google colab

I upload final_half.sqlite file in google colab. While reading the file it is giving me the error as below. Could anyone tell me how to solve this? DatabaseError: database disk image is malformed I uploaded the file in google colab as follows import…
merkle
  • 1,585
  • 4
  • 18
  • 33