python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to do k-Fold Cross Validation with tf.data.Dataset API?
It easy to do k-Fold Cross Validation by using scikit-learn package. There we separately use data and labels. However, here combine data and labels before feeding into model. like:
tf.data.Dataset.fr...
Ahmad
Votes: 0
Answers: 0
TF Dataset with CSV file where image is stored in another directory
I'm trying to create an input dataset into my TF model using a CSV dataset that I have. The dataset has the following scheme:
image_name, label
XXXXXXX.png, some_integer_value
XXXXXXX.png, some_intege...
Sathvik Chinta
Votes: 0
Answers: 1
Tensorflow Keras: Problems to handle variable length input, using generator?
We want to train our model on varying input dimensions. Every input in a given batch and across batches has different dimensions.
We cannot resize our input (since we’ll lose our microscopic features)...
Ahmad
Votes: 0
Answers: 0
Adding randomness to the performing of image augmentation while using tf.data.dataset.from_tensor_slices with tf.cond
Good day to all!
I am trying to add the possibility to control the "randomness" of the augmentation, which is applied to the image data. This means that I perform every augmentation operatio...
Denis D.
Votes: 0
Answers: 0