Skip to content

Data Augmentation Issue in Random Scaling #90

@DominikFle

Description

@DominikFle

Here:

factor = np.random.uniform(self.scaling_range[0], self.scaling_range[0])

the scaling factor is not correctly sampled from the scaling range. Instead of:
factor = np.random.uniform(self.scaling_range[0], self.scaling_range[0])
It should be
factor = np.random.uniform(self.scaling_range[0], self.scaling_range[1])

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions