starspace: init at unstable-2021-01-17

This commit is contained in:
Mauricio Scheffer
2021-01-17 21:31:55 +00:00
parent 979e6e67d3
commit f8b69fa6d2
3 changed files with 36 additions and 0 deletions
@@ -0,0 +1,28 @@
{ lib, stdenv, fetchFromGitHub, boost165 }:
stdenv.mkDerivation rec {
pname = "starspace";
version = "unstable-2021-01-17";
src = fetchFromGitHub {
owner = "facebookresearch";
repo = pname;
rev = "8aee0a950aa607c023e5c91cff518bec335b5df5";
sha256 = "0sc7a37z1skb9377a1qs8ggwrkz0nmpybx7sms38xj05b702kbvj";
};
buildInputs = [ boost165 ];
installPhase = ''
mkdir -p $out/bin
mv starspace $out/bin
'';
meta = with lib; {
description = "General-purpose neural model for efficient learning of entity embeddings";
homepage = https://ai.facebook.com/tools/starspace/;
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.mausch ];
};
}