kaggle Questions
4
Solved
The error I got that prompted this question is this:
URLError: <urlopen error [Errno -3] Temporary failure in name resolution
which occurred when I ran the command pd.read_csv(url) on a Kaggle n...
Downy asked 26/6, 2021 at 12:47
7
Solved
I'm trying to download the kaggle imagenet object localization challenge data into google colab so that I can use it to train my model. Kaggle uses an API for easy and fast access to their datasets...
Matriarchy asked 29/6, 2019 at 9:43
8
Solved
When executing the following lines,
!pip install kaggle
!kaggle competitions download -c dogs-vs-cats -p /content/
I got the following error messages,
Traceback (most recent call last):
File "/...
Neri asked 22/8, 2018 at 0:57
9
I have trying to download the kaggle dataset by using python. However i was facing issues by using the request method and the downloaded output .csv files is a corrupted html files.
import request...
3
When I run !pip install 'library_name' in the kaggle console it throws this warning:
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))
after connection broken...
5
Solved
While trying to download the "Cats_vs_Dogs" TensorFlow dataset using the tfds module, I get the following error 👇
DownloadError Traceback (most recent call last)
<ipython-input-2-2443...
Dias asked 11/5, 2022 at 10:33
5
Solved
I know similar questions has been asked already I have seen all of them and tried but of little help. I am using OSX 10.11 El Capitan, python3.6., virtual environment, tried without that also. I am...
Buchner asked 20/6, 2017 at 17:47
3
Solved
I'm trying to use the Kaggle CLI API, and in order to do that, instead of using kaggle.json for authentication, I'm using environment variables to set the credentials.
!pip install --upgrade kaggl...
Printer asked 14/11, 2018 at 17:53
3
I am trying to use resnet50 pretrained model on Kaggle kernel.
But, when I run the following code, Error occurs and it could not download the pretrained model. How Can I make it work?
from keras...
4
I'm a recruit of kaggler.
I fork a open kernel and commit, when I submit my output, the button Submit to Competition not work, and info that "Your kernel cannot use internet access for this competi...
Kirksey asked 13/5, 2019 at 13:56
3
When import pipeline from Huggingface on Kaggle notebook,
from transformers import pipeline
it throws this error:
/opt/conda/lib/python3.10/site-packages/tensorflow_io/python/ops/__init__.py:98: U...
Mckay asked 30/5, 2023 at 9:29
2
Solved
I am running a .ipynb notebook on a Kaggle server.
At the first code cell, when importing modules, specifically cv2_imshow from google.patches as follows,
from google.colab.patches import cv2_imsho...
Gaol asked 7/3, 2023 at 19:27
2
Solved
I managed to download datasets from Kaggle using Kaggle API. And the data was stored under the directory of /databricks/driver.
%sh pip install kaggle
%sh
export KAGGLE_USERNAME=my_name
export KAGG...
Berkelium asked 7/8, 2021 at 14:7
5
I hope this is not a redundant question, but I was not able to find a proper answer and tutorial. I am currently learning Data Science and therefore use kaggle competition for practice and jupyter ...
Latini asked 19/2, 2018 at 15:44
1
Solved
My goal is to learn a notebook. It has recall 97% while I am struggling with F1 Score 'Attrited Customer' 77.9%. The problem is the notebook uses LightGBM. I am unable to install LightGBM.
What I'v...
11
Say I have data.frame a
I use
m.fit <- lm(col2 ~ col3 * col4, na.action = na.exclude)
col2 has some NA values, col3 and col4 have values less than 1.
I keep getting
Error in lm.fit(x, y,...
6
I am trying to import some data from kaggle into notebook. The error I am receiving is a 401 unauthorized, however I have accepted the competition rules and I am able to download the data.
This is...
2
Solved
I am going over this Heroes Recognition ResNet34 notebook published on Kaggle.
The author uses fastai's learn.lr_find() method to find the optimal learning rate.
Plotting the loss function agains...
Denaturalize asked 12/4, 2020 at 14:1
3
I'm using tensorflow to open some .png images and every image it opens, an annoying message is printed.
def open_img(path):
img = tf.io.read_file(path)
img = tf.io.decode_png(img)
return tf.imag...
Aluino asked 22/4, 2022 at 13:10
4
Solved
I installed kaggle-cli just fine.. everything went smoothly or so pip says.
But when I try to run the kg command or just kg --version, I get
kg command not found
I can see Kaggle in Python s...
Cahoot asked 21/1, 2018 at 18:9
3
In google colab, I easily mount my google drive with this:
from google.colab import drive
drive.mount('/content/gdrive')
In kaggle's notebook, however, it gives this error:
KeyError Traceback (mos...
Indispose asked 13/1, 2020 at 11:0
13
Solved
Is it possible to use any datasets available via the kaggle API in Google Colab? I see the Kaggle API is used in this Colab notebook, but it's a bit unclear to me what datasets it provides access t...
Louisville asked 15/3, 2018 at 22:48
1
Solved
If I want switch from a Kaggle notebook to a Colab notebook, I can download the notebook from Kaggle and open the notebook in Google Colab. The problem with this is that you would normally also nee...
Genip asked 26/5, 2021 at 21:54
1
Solved
I am trying to run a model on TPU as given in colab notebook. The model was working fine, but today I could not run the model.
I used the following code to install pytorch-xla.
VERSION = "nigh...
Dygall asked 25/4, 2021 at 18:40
2
Solved
I want to download the sign language dataset from Kaggle to my Colab.
So far I always used wget and the specific zip file link, for example:
!wget --no-check-certificate \
https://storage.googleap...
Witmer asked 1/7, 2020 at 8:48
1 Next >
© 2022 - 2024 — McMap. All rights reserved.