fed908b3a5
Largest changes: - Add Mish activation. - Add experimental support for the RAdam optimizer. - Add experimental support for lookahead to the optimizer. - Add experimental support for LARS to the optimizer. Changelog: https://github.com/explosion/thinc/releases/tag/v7.3.0
82 lines
1.2 KiB
Nix
82 lines
1.2 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, pytest
|
|
, cython
|
|
, cymem
|
|
, darwin
|
|
, msgpack-numpy
|
|
, msgpack
|
|
, preshed
|
|
, numpy
|
|
, murmurhash
|
|
, pathlib
|
|
, hypothesis
|
|
, tqdm
|
|
, cytoolz
|
|
, plac
|
|
, six
|
|
, mock
|
|
, wrapt
|
|
, dill
|
|
, blis
|
|
, srsly
|
|
, wasabi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "thinc";
|
|
version = "7.3.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1f9bg7iyhwnk8jfras8d4wzq0ypn5na0bdbwkl7y2mr06yrdd0ff";
|
|
};
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
Accelerate CoreFoundation CoreGraphics CoreVideo
|
|
]);
|
|
|
|
propagatedBuildInputs = [
|
|
blis
|
|
cython
|
|
cymem
|
|
msgpack-numpy
|
|
msgpack
|
|
preshed
|
|
numpy
|
|
murmurhash
|
|
tqdm
|
|
cytoolz
|
|
plac
|
|
six
|
|
srsly
|
|
wrapt
|
|
dill
|
|
wasabi
|
|
] ++ lib.optional (pythonOlder "3.4") pathlib;
|
|
|
|
|
|
checkInputs = [
|
|
hypothesis
|
|
mock
|
|
pytest
|
|
];
|
|
|
|
# Cannot find cython modules.
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
pytest thinc/tests
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Practical Machine Learning for NLP in Python";
|
|
homepage = https://github.com/explosion/thinc;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ aborsu danieldk sdll ];
|
|
};
|
|
}
|