Open Dontmindmes opened 1 year ago
Do you have fastBPE installed? If not, try installing it:
pip install fastBPE
I had the same issue. this is how i fixed it:
git clone https://github.com/glample/fastBPE.git
export FASTBPE=${PWD}/fastBPE
cd fastBPE
g++ -std=c++11 -pthread -O3 fastBPE/main.cc -IfastBPE -o fast
python3 setup.py install # new
this installs the python api of fastBPE source: https://github.com/glample/fastBPE
I have the same problem, did you solve it?
I had the same issue. this is how i fixed it:
git clone https://github.com/glample/fastBPE.git export FASTBPE=${PWD}/fastBPE cd fastBPE g++ -std=c++11 -pthread -O3 fastBPE/main.cc -IfastBPE -o fast python3 setup.py install # new
this installs the python api of fastBPE source: https://github.com/glample/fastBPE
It works! Thank you!
I had the same issue. this is how i fixed it:
git clone https://github.com/glample/fastBPE.git export FASTBPE=${PWD}/fastBPE cd fastBPE g++ -std=c++11 -pthread -O3 fastBPE/main.cc -IfastBPE -o fast python3 setup.py install # new
this installs the python api of fastBPE source: https://github.com/glample/fastBPE
this didn't work for me. do you have any other suggestions?
I get this error when running this code