You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://nlpsandbox.io/discord"Realtime support / chat with the community and the team")
@@ -12,14 +12,13 @@ Example implementation of the [NLP Sandbox Date Annotator]
12
12
## Overview
13
13
14
14
This repository provides a Java-Spring implementation of the [NLP Sandbox Date
15
-
Annotator]. The Date Annotator is one of the first NLP Tools that can be
16
-
benchmarked on [nlpsandbox.io]. A Date Annotator takes as input a clinical note
17
-
and outputs a list of predicted date annotations found in the clinical note.
15
+
Annotator]. A Date Annotator takes as input a clinical note and outputs a list
16
+
of predicted date annotations found in the clinical note.
Copy file name to clipboardExpand all lines: package.json
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,13 @@
2
2
"devDependencies": {
3
3
"@openapitools/openapi-generator-cli": "2.2.6"
4
4
},
5
+
"private": true,
5
6
"scripts": {
6
7
"generate:server": "openapi-generator-cli generate -g spring -o server -i $npm_config_specification",
7
-
"generate:server:latest": "openapi-generator-cli generate -g spring -o server -i https://nlpsandbox.github.io/nlpsandbox-schemas/date-annotator/latest/openapi.json"
8
+
"generate:server:latest": "openapi-generator-cli generate -g spring -o server -i https://nlpsandbox.github.io/nlpsandbox-schemas/date-annotator/latest/openapi.json",
9
+
"generate:server:edge": "openapi-generator-cli generate -g spring -o server -i https://nlpsandbox.github.io/nlpsandbox-schemas/date-annotator/edge/openapi.json",
10
+
"install:dependencies": "npm ci && cd server && pip install -r requirements.txt",
0 commit comments