python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How apply kfold cross validation using tf.keras.utils.image_dataset_from_directory
My aim is to apply k-fold cross-validation for training a VGG19 model. In order to do so, I read my images from directory using the following code:
DIR = "/Images"
data_dir = pathlib.Path(os...

ali eskandari
Votes: 0
Answers: 1
Cannot fit a Model after Performing Stratified K-Fold Split
I am new to the concept of using K-folds to split into train and test data, which I am practicing with the dataset below.
Context:
The Dataset is the Kaggle UrbanSound8k set available at https://www....
ShrunkenDown
Votes: 0
Answers: 0
Reset the weights in K-fold cross validation
In k-fold cross validation why we need to reset the weights after each fold
we use thia function
def reset_weights(m):
if isinstance(m, nn.Conv2d) or isinstance(m, nn.Linear):
m.reset_parameters()
so ...
adel_hany1
Votes: 0
Answers: 1
Cross-validating KNN using K-fold
When using KNN to predict price how do you use K-fold to cross-validate?
My current code to predict is
library("tidyverse")
library("FNN")
library("forecast")
library(&qu...
Danny Warner
Votes: 0
Answers: 1