2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-06-23 09:12:54 +01:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchurl
|
|
|
|
, pipInstallHook
|
2020-10-16 10:40:35 +01:00
|
|
|
, setuptools-rust
|
|
|
|
, wheel
|
|
|
|
, numpy
|
2020-06-23 09:12:54 +01:00
|
|
|
, python
|
2021-01-16 14:07:33 +00:00
|
|
|
, datasets
|
2020-10-16 10:40:35 +01:00
|
|
|
, pytestCheckHook
|
2020-06-23 09:12:54 +01:00
|
|
|
, requests
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
robertaVocab = fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/models.huggingface.co/bert/roberta-base-vocab.json";
|
|
|
|
sha256 = "0m86wpkfb2gdh9x9i9ng2fvwk1rva4p0s98xw996nrjxs7166zwy";
|
|
|
|
};
|
|
|
|
robertaMerges = fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/models.huggingface.co/bert/roberta-base-merges.txt";
|
|
|
|
sha256 = "1idd4rvkpqqbks51i2vjbd928inw7slij9l4r063w3y5fd3ndq8w";
|
|
|
|
};
|
2020-10-16 10:40:35 +01:00
|
|
|
albertVocab = fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/models.huggingface.co/bert/albert-base-v1-tokenizer.json";
|
|
|
|
sha256 = "1hra9pn8rczx7378z88zjclw2qsdrdwq20m56sy42s2crbas6akf";
|
|
|
|
};
|
2020-06-23 09:12:54 +01:00
|
|
|
bertVocab = fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/models.huggingface.co/bert/bert-base-uncased-vocab.txt";
|
|
|
|
sha256 = "18rq42cmqa8zanydsbzrb34xwy4l6cz1y900r4kls57cbhvyvv07";
|
|
|
|
};
|
2020-10-16 10:40:35 +01:00
|
|
|
norvigBig = fetchurl {
|
|
|
|
url = "https://norvig.com/big.txt";
|
|
|
|
sha256 = "0yz80icdly7na03cfpl0nfk5h3j3cam55rj486n03wph81ynq1ps";
|
|
|
|
};
|
2020-11-10 17:16:13 +00:00
|
|
|
docPipelineTokenizer = fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/models.huggingface.co/bert/anthony/doc-pipeline/tokenizer.json";
|
|
|
|
hash = "sha256-i533xC8J5CDMNxBjo+p6avIM8UOcui8RmGAmK0GmfBc=";
|
|
|
|
};
|
|
|
|
docQuicktourTokenizer = fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/models.huggingface.co/bert/anthony/doc-quicktour/tokenizer.json";
|
|
|
|
hash = "sha256-ipY9d5DR5nxoO6kj7rItueZ9AO5wq9+Nzr6GuEIfIBI=";
|
|
|
|
};
|
2020-06-23 09:12:54 +01:00
|
|
|
openaiVocab = fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/models.huggingface.co/bert/openai-gpt-vocab.json";
|
|
|
|
sha256 = "0y40gc9bixj5rxv674br1rxmxkd3ly29p80x1596h8yywwcrpx7x";
|
|
|
|
};
|
|
|
|
openaiMerges = fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/models.huggingface.co/bert/openai-gpt-merges.txt";
|
|
|
|
sha256 = "09a754pm4djjglv3x5pkgwd6f79i2rq8ydg0f7c3q1wmwqdbba8f";
|
|
|
|
};
|
|
|
|
in rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "tokenizers";
|
2021-01-16 14:07:33 +00:00
|
|
|
version = "0.10.0";
|
2020-06-23 09:12:54 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "huggingface";
|
|
|
|
repo = pname;
|
|
|
|
rev = "python-v${version}";
|
2021-01-16 14:07:33 +00:00
|
|
|
hash = "sha256-rQ2hRV52naEf6PvRsWVCTN7B1oXAQGmnpJw4iIdhamw=";
|
2020-06-23 09:12:54 +01:00
|
|
|
};
|
|
|
|
|
2021-01-16 14:07:33 +00:00
|
|
|
cargoSha256 = "sha256-BoHIN/519Top1NUBjpB/oEMqi86Omt3zTQcXFWqrek0=";
|
2020-06-23 09:12:54 +01:00
|
|
|
|
|
|
|
sourceRoot = "source/bindings/python";
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pipInstallHook
|
2020-10-16 10:40:35 +01:00
|
|
|
setuptools-rust
|
|
|
|
wheel
|
2020-06-23 09:12:54 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2020-10-16 10:40:35 +01:00
|
|
|
numpy
|
2020-06-23 09:12:54 +01:00
|
|
|
python
|
|
|
|
];
|
|
|
|
|
2020-10-16 10:40:35 +01:00
|
|
|
installCheckInputs = [
|
2021-01-16 14:07:33 +00:00
|
|
|
datasets
|
2020-10-16 10:40:35 +01:00
|
|
|
pytestCheckHook
|
|
|
|
requests
|
|
|
|
];
|
2020-06-23 09:12:54 +01:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
doInstallCheck = true;
|
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
# Add data files for tests, otherwise tests attempt network access.
|
|
|
|
mkdir $sourceRoot/tests/data
|
|
|
|
( cd $sourceRoot/tests/data
|
|
|
|
ln -s ${robertaVocab} roberta-base-vocab.json
|
|
|
|
ln -s ${robertaMerges} roberta-base-merges.txt
|
2020-10-16 10:40:35 +01:00
|
|
|
ln -s ${albertVocab} albert-base-v1-tokenizer.json
|
2020-06-23 09:12:54 +01:00
|
|
|
ln -s ${bertVocab} bert-base-uncased-vocab.txt
|
2020-11-10 17:16:13 +00:00
|
|
|
ln -s ${docPipelineTokenizer} bert-wiki.json
|
|
|
|
ln -s ${docQuicktourTokenizer} tokenizer-wiki.json
|
2020-10-16 10:40:35 +01:00
|
|
|
ln -s ${norvigBig} big.txt
|
2020-06-23 09:12:54 +01:00
|
|
|
ln -s ${openaiVocab} openai-gpt-vocab.json
|
|
|
|
ln -s ${openaiMerges} openai-gpt-merges.txt )
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
2020-10-16 10:40:35 +01:00
|
|
|
${python.interpreter} setup.py bdist_wheel
|
2020-06-23 09:12:54 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
pipInstallPhase
|
|
|
|
'';
|
|
|
|
|
2021-01-16 14:07:33 +00:00
|
|
|
preCheck = ''
|
|
|
|
HOME=$TMPDIR
|
|
|
|
'';
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
# Downloads data using the datasets module.
|
|
|
|
"TestTrainFromIterators"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-23 09:12:54 +01:00
|
|
|
homepage = "https://github.com/huggingface/tokenizers";
|
|
|
|
description = "Fast State-of-the-Art Tokenizers optimized for Research and Production";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ danieldk ];
|
|
|
|
};
|
|
|
|
}
|