web-services / fund-ner /
..
v1/ funderTagger feat(fund-ner):Adding fund-ner repo for funder detection ws 5 months ago
README.md feat(fund-ner):Adding fund-ner repo for funder detection ws 5 months ago
examples.http feat(fund-ner):Adding fund-ner repo for funder detection ws 5 months ago
swagger.json feat(fund-ner):Adding fund-ner repo for funder detection ws 5 months ago
README.md

fund-ner

Cette instance propose un outil de détection de financeurs.

Configuration

L'application à utiliser est XXX.

Utilisation

v1

Ce web-service renvoie la liste des financeurs présent dans un texte. Il prend en entrée du JSON avec deux champs, id et value, et renvoie un JSON avec le la liste des financeurs trouvés dans le champ value. Il est important de souligner que le programme détécte en fonction du contexte de la phrase, il ne s'agit pas de détéction via une base de financeurs existante.

Exemple de v1/first-name/gender

Entrée

$ cat <<EOF | curl -X POST --data-binary @- "?????????"
[{"id": "1", "value": "This study was funded by the CNRS and INIST."}]
EOF

Sortie

[
     {"id": 1, "value": ["CNRS","INIST"]}}
]