Initial Commit

This commit is contained in:
2024-01-09 17:45:06 +01:00
parent 73cf64d8c2
commit 455d9f3330
87 changed files with 41694 additions and 1 deletions

11
sample/CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
include_directories(
${Platform_SOURCE_DIR}/src/Platform
${Platform_SOURCE_DIR}/src/PyClassifiers
${Python3_INCLUDE_DIRS}
${Platform_SOURCE_DIR}/lib/Files
${Platform_SOURCE_DIR}/lib/mdlp
${Platform_SOURCE_DIR}/lib/argparse/include
${Platform_SOURCE_DIR}/lib/json/include
)
add_executable(PlatformSample sample.cc ${Platform_SOURCE_DIR}/src/Platform/Models.cc)
target_link_libraries(PlatformSample Platform ArffFiles mdlp "${TORCH_LIBRARIES}" PyWrap)