MetalTranslate
MetalTranslate copied to clipboard
Customizable machine translation in C++
``` Build started... 1>------ Build started: Project: ZERO_CHECK, Configuration: Debug x64 ------ 1>Checking File Globs 2>------ Build started: Project: OpenNMTTokenizer, Configuration: Debug x64 ------ 2>sentencepiece.lib(flag.obj) : error LNK2038: mismatch detected...
Hi there! I am trying to compile the project on Windows. I have used the strategy on #3 and it compiled. The issue that I am facing is that the...
``` cmake_minimum_required(VERSION 3.10) project(MetalTranslate) include(ExternalProject) set(EXTERNAL_INSTALL_LOCATION ${CMAKE_BINARY_DIR}/external) # CTranslate2 External Project ExternalProject_Add(CTranslate2 GIT_REPOSITORY https://github.com/OpenNMT/CTranslate2 GIT_TAG 4908b9d CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${EXTERNAL_INSTALL_LOCATION} -DWITH_MKL=OFF -DWITH_DNNL=ON ) # Tokenizer External Project ExternalProject_Add(Tokenizer GIT_REPOSITORY https://github.com/OpenNMT/Tokenizer GIT_TAG 559b8e7...