From 406991459a3ed892d1d828ced03a169954032b98 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Tue, 26 Sep 2023 07:56:31 +0200 Subject: [PATCH] Fix formatting --- website/meta/universe.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/meta/universe.json b/website/meta/universe.json index 6f649989c..7396aafef 100644 --- a/website/meta/universe.json +++ b/website/meta/universe.json @@ -4483,10 +4483,10 @@ "import spacy", "nlp = spacy.load(\"ro_legal_fl\")", "", - "doc = nlp(\"Titlul III din LEGEA nr. 255 din 19 iulie 2013, publicată în MONITORUL OFICIAL\")" - "# legal entity identification" - "for entity in doc.ents:" - " print('entity: ', entity, '; entity type: ', entity.label_)" + "doc = nlp(\"Titlul III din LEGEA nr. 255 din 19 iulie 2013, publicată în MONITORUL OFICIAL\")", + "# legal entity identification", + "for entity in doc.ents:", + " print('entity: ', entity, '; entity type: ', entity.label_)", "", "# floret n-gram embeddings robust to typos", "print(nlp('achizit1e public@').similarity(nlp('achiziții publice')))"