From 75f88ecb9342598555a48e6e20547983e15e91e1 Mon Sep 17 00:00:00 2001 From: "Patrick J. Burns" Date: Mon, 8 May 2023 07:52:23 -0400 Subject: [PATCH] Update website/meta/universe.json Add install code for LatinCy models to 'code_example' Co-authored-by: Adriane Boyd --- website/meta/universe.json | 1 + 1 file changed, 1 insertion(+) diff --git a/website/meta/universe.json b/website/meta/universe.json index c66b67cb6..6b7482e45 100644 --- a/website/meta/universe.json +++ b/website/meta/universe.json @@ -8,6 +8,7 @@ "description": "Set of trained general purpose Latin-language 'core' pipelines for use with spaCy. The models are trained on a large amount of available Latin data, including all five of the Latin Universal Dependency treebanks, which have been preprocessed to be compatible with each other.", "url": "https://huggingface.co/latincy", "code_example": [ + "# pip install https://huggingface.co/latincy/la_core_web_lg/resolve/main/la_core_web_lg-any-py3-none-any.whl", "import spacy", "nlp = spacy.load('la_core_web_lg')", "doc = nlp('Haec narranatur a poetis de Perseo')",