1,722 questions with no answers
-1
votes
0
answers
82
views
Is the following problem an issue with Google Colab or an error in the code?
I am trying to follow "Deep Learning in Python" by Francois Chollet.
I have copied and pasted the code at the end of this post from the github page into colab. I am getting a very different, ...
1
vote
0
answers
400
views
Colab notebook unable to find Google Sheets documents
I have a set of documents stored in Google Drive that I am trying to read into dataframes in a Google Colab notebook but am receiving a SpreadsheetNotFound error.
I am following the steps outlined ...
0
votes
0
answers
71
views
Java in Google Colab is not updating?
I am trying to use r5py within a Google Colab environment, and it won't run.
The issue I get specifically with r5py is that it needs Java 65, but Colab only recognizes up to 61:
java.lang....
1
vote
0
answers
273
views
How to run plotly library in colab R
I am using R in google colaboratory. I want to use ploly library, but it does not provide graph.
I am using the following code:
library(plotly)
fig <- plot_ly(data = iris, x = ~Sepal.Length, y = ~...
4
votes
0
answers
289
views
Finetuning NeMo parakeet in google colab results CUDA_ERROR_UNSUPPORTED_PTX_VERSION
Aim:
I want to finetune parakeet v2 model to a different dataset. I picked LJ dataset just to make myself familiar with the finetuning process.
For doing this I ran the following notebook
This works ...
1
vote
0
answers
153
views
Importing pyannote.audio into collab
Installation of all the packages I'm using into the collab environment worked fine
However whenever I try to run the following code cell
from pyannote.audio.pipelines.speaker_verification import ...
0
votes
0
answers
105
views
Problem with spconv library on Google Colab
Installed spconv library on Google Colab.
Got following compilation error while importing
[1/42] [GCC][c++/pch]/usr/local/lib/python3.11/dist-packages/cumm/build/core_cc/include/tensorview_bind/...
1
vote
0
answers
185
views
Reliable Colab Notebook Secret Usage
In Google Colab, I use notebook-level secrets to follow best practices for credential management. However, it is a little bit buggy.
from google.colab import userdata
from google.cloud import storage
...
1
vote
0
answers
49
views
Identify which cells were based on accepted AI suggestions
Is it possible to identify which cells in a Google Colab were based on accepted AI suggestions?
I am considering how I might inspect the JSON returned by students to determine if cell(s) were the ...
0
votes
0
answers
96
views
GradientTape won't calculate gradients after restoring a model from ModelCheckpoint
I'm training a CNN on Tensorflow for binary classification and executing my code in Google Colab.
CNN_model = tf.keras.Sequential([
tf.keras.layers.Input(shape=(IMAGE_SIZE, IMAGE_SIZE, 3)),
tf....
0
votes
0
answers
109
views
Flask app with flask-ngrok stuck in Colab (no public URL, cell runs indefinitely, 127.0.0.1 access denied)
I'm trying to run a simple Flask chatbot app in Google Colab, using flask-ngrok to expose it publicly. I began developing locally but I ran into some Tensorflow import issues and moved to Colab. ...
0
votes
0
answers
54
views
Google Colab AlexNet.ipynb: OSError: libcudnn.so.8: No such file or directory
I'm trying to learn and implement AlexNet and I'm using this Google Colab notebook to help: https://colab.research.google.com/github/d2l-ai/d2l-en-colab/blob/master/chapter_convolutional-modern/...
0
votes
0
answers
211
views
complete installation of MMPOSE on google colab?
I've been going on circles in installing in Google-Colab the MMPose software: https://mmpose.readthedocs.io/en/latest/installation.html.
Apparently there are many issues with compatibility i.e. the ...
0
votes
0
answers
134
views
installing mediapipe on google colab
I am having trouble installing mediapipe on Google colab.
!pip install mediapipe
Here is the error
ERROR: pip's dependency resolver does not currently take into account all the packages that are ...
1
vote
0
answers
284
views
yfinance - can't download stock data in JupyterLab, but it works on Google Colab
Good morning, evening and night!
I'm having an issue when trying to download stock data using the yfinance tool in JupyterLab. It will work perfectly in Google Colab, as I'm using the following simple ...