Merge pull request #109651 from mausch/starspace
starspace: init at 8aee0a950aa607c023e5c91cff518bec335b5df5
This commit is contained in:
commit
3f5d6b2e85
3 changed files with 36 additions and 0 deletions
|
@ -5604,6 +5604,12 @@
|
|||
fingerprint = "B573 5118 0375 A872 FBBF 7770 B629 036B E399 EEE9";
|
||||
}];
|
||||
};
|
||||
mausch = {
|
||||
email = "mauricioscheffer@gmail.com";
|
||||
github = "mausch";
|
||||
githubId = 95194;
|
||||
name = "Mauricio Scheffer";
|
||||
};
|
||||
matejc = {
|
||||
email = "cotman.matej@gmail.com";
|
||||
github = "matejc";
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -26982,6 +26982,8 @@ in
|
|||
|
||||
stardust = callPackage ../games/stardust {};
|
||||
|
||||
starspace = callPackage ../applications/science/machine-learning/starspace { };
|
||||
|
||||
stockfish = callPackage ../games/stockfish { };
|
||||
|
||||
steamPackages = dontRecurseIntoAttrs (callPackage ../games/steam {
|
||||
|
|
Loading…
Reference in a new issue