Commit c5c0184d authored by Alexandre Delanoë's avatar Alexandre Delanoë

Merge remote-tracking branch 'origin/issue-436-dockerfile-and-corenlp' into dev-merge

parents eca8f40d 12951945
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
writeShellScript, writeShellScript,
jre, jre,
version ? "4.5.8", version ? "4.5.9",
hash ? "sha256-HZHNyw+LrxAN4OLueAhyxRG2onPWNMm5MwJDLLzsE2M=" hash ? "sha256-DOGBkGJfvR1PoXz2CNoo58HXwGLxvPKMChRqlrFtQLQ=",
}: }:
stdenv.mkDerivation (finalAttrs: stdenv.mkDerivation (finalAttrs:
...@@ -29,6 +29,12 @@ stdenv.mkDerivation (finalAttrs: ...@@ -29,6 +29,12 @@ stdenv.mkDerivation (finalAttrs:
${jre}/bin/java -mx4g -cp "$CORENLP_PATH/*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -port $PORT -timeout 15000 "$@" ${jre}/bin/java -mx4g -cp "$CORENLP_PATH/*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -port $PORT -timeout 15000 "$@"
''; '';
# see https://huggingface.co/stanfordnlp/CoreNLP/commits/main
versionCommits = {
"4.5.8" = "34264e88b7add9e0045f4727bc7d1872385f06aa";
"4.5.9" = "06f79ee8b1ec475d7630b1871bfd75a57c77ffa4";
};
commit = versionCommits."${finalAttrs.version}";
in in
{ {
...@@ -36,7 +42,9 @@ stdenv.mkDerivation (finalAttrs: ...@@ -36,7 +42,9 @@ stdenv.mkDerivation (finalAttrs:
inherit version; inherit version;
src = fetchzip { src = fetchzip {
inherit hash; inherit hash;
url = "http://nlp.stanford.edu/software/stanford-corenlp-${finalAttrs.version}.zip"; # url = "http://nlp.stanford.edu/software/stanford-corenlp-${finalAttrs.version}.zip";
# huggin face is more stable
url = "https://huggingface.co/stanfordnlp/CoreNLP/resolve/${commit}/stanford-corenlp-latest.zip";
}; };
buildInputs = [ buildInputs = [
jre jre
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment