mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
parsigs universe (#12616)
* parsigs universe * added model installation explanation in the description * Update website/meta/universe.json Co-authored-by: Basile Dura <bdura@users.noreply.github.com> * added model installement instruction in the code example --------- Co-authored-by: Basile Dura <bdura@users.noreply.github.com>
This commit is contained in:
parent
d11b549195
commit
a56ab98e3c
|
@ -1,5 +1,28 @@
|
||||||
{
|
{
|
||||||
"resources": [
|
"resources": [
|
||||||
|
{
|
||||||
|
"id": "parsigs",
|
||||||
|
"title": "parsigs",
|
||||||
|
"slogan": "Structuring prescriptions text made simple using spaCy",
|
||||||
|
"description": "Parsigs is an open-source project that aims to extract the relevant dosage information from prescriptions text without compromising the patient's privacy.\n\nNotice you also need to install the model in order to use the package: `pip install https://huggingface.co/royashcenazi/en_parsigs/resolve/main/en_parsigs-any-py3-none-any.whl`",
|
||||||
|
"github": "royashcenazi/parsigs",
|
||||||
|
"pip": "parsigs",
|
||||||
|
"code_language": "python",
|
||||||
|
"author": "Roy Ashcenazi",
|
||||||
|
"code_example": [
|
||||||
|
"# You'll need to install the trained model, see instructions in the description section",
|
||||||
|
"from parsigs.parse_sig_api import StructuredSig, SigParser",
|
||||||
|
"sig_parser = SigParser()",
|
||||||
|
"",
|
||||||
|
"sig = 'Take 1 tablet of ibuprofen 200mg 3 times every day for 3 weeks'",
|
||||||
|
"parsed_sig = sig_parser.parse(sig)"
|
||||||
|
],
|
||||||
|
"author_links": {
|
||||||
|
"github": "royashcenazi"
|
||||||
|
},
|
||||||
|
"category": ["model", "research"],
|
||||||
|
"tags": ["sigs", "prescription","pharma"]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "latincy",
|
"id": "latincy",
|
||||||
"title": "LatinCy",
|
"title": "LatinCy",
|
||||||
|
@ -26,7 +49,7 @@
|
||||||
},
|
},
|
||||||
"category": ["pipeline", "research"],
|
"category": ["pipeline", "research"],
|
||||||
"tags": ["latin"]
|
"tags": ["latin"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "spacy-wasm",
|
"id": "spacy-wasm",
|
||||||
"title": "spacy-wasm",
|
"title": "spacy-wasm",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user