transfix-train/scripts/fastBPE-setup.sh

8 lines
145 B
Bash
Raw Normal View History

2022-01-14 18:45:36 +01:00
#!/bin/bash
cd ~
git clone https://github.com/glample/fastBPE.git
cd fastBPE
g++ -std=c++11 -pthread -O3 fastBPE/main.cc -IfastBPE -o fast
cd ~