Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using deepaugment with large custom dataset (using generator)? #26

Open
nvinhphuc opened this issue May 4, 2019 · 2 comments
Open

Using deepaugment with large custom dataset (using generator)? #26

nvinhphuc opened this issue May 4, 2019 · 2 comments

Comments

@nvinhphuc
Copy link

nvinhphuc commented May 4, 2019

According to my observation, I don't see deepaugment support big dataset (which I cannot load all images and labels at a time and have to use data generator)? If I'm missing something, can you show how to use this repo with custom dataset which I have to use data generator?

@JordanMakesMaps
Copy link

According to my observation, I don't see deepaugment support big dataset (which I cannot load all images and labels at a time and have to use data generator)? If I'm missing something, can you show how to use this repo with custom dataset which I have to use data generator?

Look at fit_with_generator() under childnn.py:

def fit_with_generator( self, datagen, X_val, y_val, train_data_size, epochs=None, csv_logger=None ):

    record = self.model.fit_generator(
        datagen,
        validation_data=(X_val, y_val),
        steps_per_epoch=train_data_size // self.config["child_batch_size"],
        epochs=epochs,
        shuffle=True,
        verbose=2,
        callbacks=[csv_logger],
    )
    return record.history

@balajiselvaraj1601
Copy link

@JordanMakesMaps
@barisozmen

Can u provide some tutorial to use Deepaugment with large dataset. I am still stuck.

Thanks in advance

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants