Questions tagged [kaggle]

Relating to Competitions, Datasets, Kernels, Learn, or Kaggle's API.

Relating to the following Kaggle data science categories:

1115 questions
-1
votes
2 answers

File not found error even I didn't mentioned or used the error file name or directory name in code

Am getting an error for file not found for a non existing file name in the code. I haven't used file or directory name in the entire code, still error is thrown. # Extract the features from the images def extract_features(image_paths): features…
Durga S
  • 27
  • 5
-1
votes
1 answer

How to read/load images from a dataset from Kaggle directly into Python without downloading locally?

I want to use a large dataset containing images from Kaggle in order to train a network I've created, however I have limited storage space on the machine I'm working on. I was wondering if there is any way to get the Kaggle dataset from a URL and…
seeckhout
  • 1
  • 1
-1
votes
1 answer

How to recursively save GAN generated images to a folder in Kaggle

img_list2 = [] img_list2.append(fake) for i in range(len(fake)): vutils.save_image(img_list2[-1][i], "/content/drive/MyDrive/DAugmentn/genPyImage /gpi%d.jpg" % i, normalize=True) With this code…
-1
votes
1 answer

numpy.core._exceptions.MemoryError: Unable to allocate space for array

error numpy.core._exceptions.MemoryError: Unable to allocate 362. GiB for an array with shape (2700000, 18000) and data type float64 https://www.kaggle.com/datasets/netflix-inc/netflix-prize-data im working on this netflix prize data set which has…
-1
votes
1 answer

Multi class neural network for MNIST data set not working

Hi I'm trying to train my own designed neural network on the MNIST handwritten data set and every time I run this code the accuracy starts to increase then decreases and I get an overflow warning. Can someone explain whether my code is just poor and…
-1
votes
1 answer

Kaggle competition: categorical variables

Under the categorical variables exercise there is the last part of generating test predictions. I have written the following code but getting an error. I am unable to understand the error and why it's saying X has 148 features and random forest is…
-1
votes
1 answer

Get dataset cover image from kaggle using python selenium web scraping

Hi, Please how can i scrap the cover image of datasets from kaggle using python selenium ? or just get the value of "src" of the HTML View img => image of inspect elem
-1
votes
1 answer

How do I use YOLOv5 without the internet for kaggle competition

I am attempting to use a software called YOLOv5 in my python code for a Kaggle competition. The only thing is it requires you not to use the internet. I have the yolov5 file already loaded into the kaggle code. but am unsure how to call in in my…
kill wind
  • 1
  • 3
-1
votes
1 answer

Code and dataset(small size) for image clustering

Can anyone pls provide code and dataset for Unsupervised image clustering. There is no resources are available on the internet regarding image clustering and its implementation
-1
votes
1 answer

The productivity of Colab: to load directly from the Net(e.g. Kaggle) databases or to upload them on the colab directory and then extract them?

I tried to search for the fastest approach to work with large data files in colab. I began to wonder if it would be better to upload them directly from the site (e.g. Kaggle), or to upload them onto the colab own directory and work with them from…
Marko Kolaksazov
  • 73
  • 1
  • 1
  • 10
-1
votes
1 answer

"Which one to choose? Lemmatization or Stemming?"

To perform NLP tasks, like "Predict which Tweets are about real disasters and which ones are not" from KAGGLE, link: https://www.kaggle.com/c/nlp-getting-started Which task should I perform to normalize my texts, Lemmatization or stemming? Thank…
-1
votes
1 answer

Somebody please help me with this exercise/lesson on Kaggle for SQL

I'm really stuck. So in this exercise in Kaggle we're looking at a dataset of chicago taxi trips and we want to look at a particular table. The first step is to find the relevant table we'd like to investigate, so the learner is prompted to try and…
-1
votes
1 answer

I Tried to upload my csv file datasets but weka is not recognizing it

I tried uploading my datasets on weka but I keep getting "java.io.IOException https://drive.google.com/file/d/1DBypoKEnU9iFO2YNLUKbtkxnO-A2BIWe/view?usp=sharing this is the datasets. Can anyone help, please?
-1
votes
1 answer

Why am I getting error while importing a module in kaggle?

I am working on a kaggle notebook. I tried to import bs4 but its showing error ModuleNotFoundError: No module named 'bs4' My internet is on in kaggle settings. What is the solution?
-1
votes
1 answer

Distributions all numeric values in python

i am just doing titanic dataset machine learning problem.I seperate numerical and categorical value in my dataset.and want to plot histogram all numerical values but i doesnt show.Can anyone help me to fix this?My…