Chunmyong Park
Chunmyong Park
WICWIU massively uses `stdout` to print log when executing programs. However, this method usually considered inefficient way. So, please consider the logger library to write a log in the future.
https://github.com/WICWIU/WICWIU/blob/317fb4172938e8056d966426d22ce7d3e2ab4094/WICWIU_src/Operator/BatchNormalize.hpp#L109-L122 위에서 정의되는 `m_pTenBias`와 `m_pTenScale`은 Save() 함수를 불렀을 때 저장되고, Load() 함수를 불렀을 때 복구되어야 합니다. 현재 코드는 이를 지원하지 않고 있으며, 아마 Save 함수를 따로 상속받아야 할 것으로 생각됩니다.
For example, https://pytorch.org/docs/stable/torchvision/datasets.html#torchvision.datasets.MNIST https://pytorch.org/docs/stable/torchvision/datasets.html?highlight=cifar10#torchvision.datasets.CIFAR10
Hello, I'm currently trying to apply my custom model to maestro. However, I met `Segmentation Fault` error when executing my custom model (the mapping file is generated by `frontend`). (I...