Skip to content

Commit

Permalink
Add project 'solipCysme' in universe.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
thjbdvlt committed Sep 18, 2024
1 parent 2f1e7ed commit e908ae7
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions website/meta/universe.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,47 @@
"ancient Greek"
]
},
{
"id": "solipcysme",
"title": "solipCysme",
"slogan": "spaCy pipeline for french fictions and first person point of view texts.",
"description": "__solipCysme__ is a pipeline for french language, designed for the analysis of fictions and first person point of view texts, with a focus on personal pronouns.",
"github": "thjbdvlt/solipCysme",
"code_example": [
"pip install https://huggingface.co/thjbdvlt/fr_solipcysme/resolve/main/fr_solipcysme-any-py3-none-any.whl",
"",
"import spacy",
"",
"nlp = spacy.load('fr_solipcysme')",
"for i in nlp(",
"'la MACHINE à (b)rouiller le temps s'est peut-être déraillée..?'",
"):",
" print(",
" i, ",
" i.norm_, ",
" i.pos_, ",
" i.morph, ",
" i.lemma_, ",
" i.dep_, ",
" i._.tokentype,",
" i._.vv_pos,",
" i._.vv_morph",
" )"
],
"code_language": "python",
"author": "thjbdvlt",
"author_links": {
"github": "thjbdvlt"
},
"category": [
"pipeline",
"research",
"models"
],
"tags": [
"french"
]
},
{
"id": "spacy-cleaner",
"title": "spacy-cleaner",
Expand Down

0 comments on commit e908ae7

Please sign in to comment.