sentencepiece: init at 0.1.84
This commit is contained in:
parent
2b3026f172
commit
82116878da
31
pkgs/development/libraries/sentencepiece/default.nix
Normal file
31
pkgs/development/libraries/sentencepiece/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ config
|
||||||
|
, fetchFromGitHub
|
||||||
|
, stdenv
|
||||||
|
, lib
|
||||||
|
, cmake
|
||||||
|
, gperftools
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "sentencepiece";
|
||||||
|
version = "0.1.84";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "google";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "144y25nj4rwxmgvzqbr7al9fjwh3539ssjswvzrx4gsgfk62lsm0";
|
||||||
|
};
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake gperftools ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/google/sentencepiece;
|
||||||
|
description = "Unsupervised text tokenizer for Neural Network-based text generation";
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
maintainers = with maintainers; [ pashashocky ];
|
||||||
|
};
|
||||||
|
}
|
@ -25611,4 +25611,6 @@ in
|
|||||||
|
|
||||||
gortr = callPackage ../servers/gortr {};
|
gortr = callPackage ../servers/gortr {};
|
||||||
|
|
||||||
|
sentencepiece = callPackage ../development/libraries/sentencepiece {};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user