Alex Torres

Results 3 issues of Alex Torres

Using the last commit "a353c8379cd673da95a944d34e753267bc50892f". I tried to compile this code: ``` #define VEC_DATA_TYPE_STR(type, size) type##size #define VEC_DATA_TYPE(type, size) VEC_DATA_TYPE_STR(type, size) #ifndef DATA_TYPE #define DATA_TYPE short #endif /* DATA_TYPE */...

bug

When I execute make command, it gave the follow error: ``` In file included from /home/alex/Projects/tf2cpp/third-party/google/tensorflow/tensorflow/core/framework/tensor.h:19:0, from /home/alex/Projects/tf2cpp/third-party/google/tensorflow/tensorflow/core/public/session.h:24, from /home/alex/Projects/tf2cpp/loader.cc:1: /home/alex/Projects/tf2cpp/third-party/google/tensorflow/third_party/eigen3/unsupported/Eigen/CXX11/Tensor:1:42: fatal error: unsupported/Eigen/CXX11/Tensor: No such file or directory #include...

How should I resize an image on dataloader, is it like in the inference, where only the smaller dimension is resized to a reference size? ``` class ModnetDataset(Dataset): def __init__(self,...