Skip to content

why calculate 'MSE' or 'MAE' in axis=(0,1)? and what shape of output and every dimention means what? #9

@nana1223

Description

@nana1223

in utils.py:
def MAE(pred, true):
return np.mean(np.abs(pred - true), axis=(0, 1)).sum()

def MSE(pred, true):
return np.mean((pred - true) ** 2, axis=(0, 1)).sum()

thank you!!!!!!

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