Shahriar Rezghi

Results 5 comments of Shahriar Rezghi

@deepali-c The last time we were working on structures for functions like ```log_softmax``` to replace ```torch::nn::Functional```'s. I think they should be used here.

Hi @facug91 I'm looking into this.

@facug91 This is a minimal example of usage: CMakeLists.txt: ``` cmake_minimum_required(VERSION 2.8) project(testvision) add_executable(${PROJECT_NAME} "main.cpp") find_package(Torch REQUIRED) target_link_libraries(${PROJECT_NAME} torchvision) target_link_libraries(${PROJECT_NAME} PUBLIC "${TORCH_LIBRARIES}") ``` main.cpp: ``` #include int main() { vision::models::AlexNet...

Yes it is working because ```libtorchvision.so``` is just another shared library and you cal link to it with ```target_link_libraries```. I think it would be better if a config and a...

Hi @Pnikam You can build and install torchvision's C++ API from source. The instructions are in the README file.