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 use detectron2's augmentation with datasets loaded using register_coco_instances
I've trained a detectron2 model on custom data I labeled and exported in the coco format, but I now want to apply augmentation and train using the augmented data. How can I do that if I'm not using a ...
Ramon Griffo
Votes: 0
Answers: 1
Tensor error using DiffAugment for data augmentation in my own dataset . data efficient gans
I'm trying to create synthetic data from pics within a folder called Bathroom using
this colab example => https://colab.research.google.com/gist/zsyzzsoft/5fbb71b9bf9a3217576bebae5de46fc2/data-eff...
albertovpd
Votes: 0
Answers: 1
On the fly augmentation for segmentation
Hi I am trying to do 2D prostate segmentation using U-net. I want to apply data augmentation to both prostate and label images (X,y), for this I am currently using Torch.io which applies the same rand...
Beg
Votes: 0
Answers: 1
No val_loss and val_accuracy keys when I've already had validation_data in model.fit()'s argument
Here's the image augmentation code:
batch_size = 16
train_datagen = ImageDataGenerator(rescale=1./255, validation_split=0.2)
# test_datagen = ImageDataGenerator(rescale=1./255)
# Use flow from data...
Teerapad Pipadboonyarat
Votes: 0
Answers: 1