2023-03-23 18:03:15 +03:00
|
|
|
distributable:
|
|
|
|
url: https://github.com/google/sentencepiece/archive/v{{version}}.tar.gz
|
|
|
|
strip-components: 1
|
|
|
|
|
|
|
|
versions:
|
|
|
|
github: google/sentencepiece/releases/tags
|
|
|
|
ignore: '1.0.0' # whoops, who tagged this then?
|
|
|
|
|
|
|
|
build:
|
|
|
|
dependencies:
|
|
|
|
cmake.org: ^3
|
2023-10-03 18:23:56 +03:00
|
|
|
python.org: '>=3<3.12'
|
2023-03-25 00:53:39 +03:00
|
|
|
pip.pypa.io: '*'
|
|
|
|
freedesktop.org/pkg-config: ~0.29
|
2023-03-23 18:03:15 +03:00
|
|
|
working-directory: build
|
|
|
|
script: |
|
|
|
|
cmake .. -DCMAKE_INSTALL_PREFIX="{{prefix}}" -DCMAKE_BUILD_TYPE=Release
|
|
|
|
make --jobs {{ hw.concurrency }} install
|
|
|
|
|
2023-03-25 00:53:39 +03:00
|
|
|
pip install ../python --verbose --prefix="{{prefix}}"
|
|
|
|
|
2023-03-23 18:03:15 +03:00
|
|
|
provides:
|
|
|
|
- bin/spm_decode
|
|
|
|
- bin/spm_encode
|
|
|
|
- bin/spm_export_vocab
|
|
|
|
- bin/spm_normalize
|
|
|
|
- bin/spm_train
|
|
|
|
|
2023-03-25 00:53:39 +03:00
|
|
|
runtime:
|
|
|
|
env:
|
|
|
|
PYTHONPATH: '{{prefix}}/lib/python3.11/site-packages'
|
|
|
|
|
2023-03-23 18:03:15 +03:00
|
|
|
test:
|
|
|
|
dependencies:
|
|
|
|
gnu.org/wget: '*'
|
2023-10-03 18:23:56 +03:00
|
|
|
python.org: '>=3<3.12'
|
2023-03-23 18:03:15 +03:00
|
|
|
script: |
|
|
|
|
wget https://raw.githubusercontent.com/google/sentencepiece/master/data/botchan.txt
|
|
|
|
spm_train --input=botchan.txt --model_prefix=m --vocab_size=1000
|
2023-03-25 00:53:39 +03:00
|
|
|
|
|
|
|
python -c 'import sentencepiece as spm; spm.SentencePieceProcessor()'
|