mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-12 18:26:30 +03:00
* Add spacy.it
This commit is contained in:
parent
2154a54f6b
commit
ef58607a99
11
spacy/it/__init__.py
Normal file
11
spacy/it/__init__.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
from __future__ import unicode_literals, print_function
|
||||
|
||||
from os import path
|
||||
|
||||
from ..language import Language
|
||||
|
||||
|
||||
class Italian(Language):
|
||||
@classmethod
|
||||
def default_data_dir(cls):
|
||||
return path.join(path.dirname(__file__), 'data')
|
3
spacy/it/data/tokenizer/infix.txt
Normal file
3
spacy/it/data/tokenizer/infix.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
\.\.\.
|
||||
(?<=[a-z])\.(?=[A-Z])
|
||||
(?<=[a-zA-Z])-(?=[a-zA-z])
|
55
spacy/it/data/tokenizer/morphs.json
Normal file
55
spacy/it/data/tokenizer/morphs.json
Normal file
|
@ -0,0 +1,55 @@
|
|||
{
|
||||
"PRP": {
|
||||
"I": {"L": "-PRON-", "person": 1, "number": 1, "gender": 0, "case": 1},
|
||||
"me": {"L": "-PRON-", "person": 1, "number": 1, "gender": 0, "case": 3},
|
||||
"mine": {"L": "-PRON-", "person": 1, "number": 1, "gender": 0, "case": 2},
|
||||
"myself": {"L": "-PRON-", "person": 1, "number": 1, "gender": 0, "case": 4},
|
||||
"you": {"L": "-PRON-", "person": 2, "number": 0, "gender": 0, "case": 0},
|
||||
"yours": {"L": "-PRON-", "person": 2, "number": 0, "gender": 0, "case": 2},
|
||||
"yourself": {"L": "-PRON-", "person": 2, "number": 0, "gender": 0, "case": 4},
|
||||
"he": {"L": "-PRON-", "person": 3, "number": 1, "gender": 1, "case": 1},
|
||||
"him": {"L": "-PRON-", "person": 3, "number": 1, "gender": 1, "case": 3},
|
||||
"his": {"L": "-PRON-", "person": 3, "number": 1, "gender": 1, "case": 2},
|
||||
"himself": {"L": "-PRON-", "person": 3, "number": 1, "gender": 1, "case": 4},
|
||||
"she": {"L": "-PRON-", "person": 3, "number": 1, "gender": 2, "case": 1},
|
||||
"her": {"L": "-PRON-", "person": 3, "number": 1, "gender": 2, "case": 3},
|
||||
"hers": {"L": "-PRON-", "person": 3, "number": 1, "gender": 2, "case": 2},
|
||||
"herself": {"L": "-PRON-", "person": 3, "number": 1, "gender": 2, "case": 4},
|
||||
"it": {"L": "-PRON-", "person": 3, "number": 1, "gender": 3, "case": 0},
|
||||
"its": {"L": "-PRON-", "person": 3, "number": 1, "gender": 3, "case": 2},
|
||||
"itself": {"L": "-PRON-", "person": 3, "number": 1, "gender": 3, "case": 4},
|
||||
"themself": {"L": "-PRON-", "person": 3, "number": 1, "gender": 0, "case": 4},
|
||||
"we": {"L": "-PRON-", "person": 1, "number": 2, "gender": 0, "case": 1},
|
||||
"us": {"L": "-PRON-", "person": 1, "number": 2, "gender": 0, "case": 3},
|
||||
"ours": {"L": "-PRON-", "person": 1, "number": 2, "gender": 0, "case": 3},
|
||||
"ourselves": {"L": "-PRON-", "person": 1, "number": 2, "gender": 0, "case": 4},
|
||||
"yourselves": {"L": "-PRON-", "person": 2, "number": 2, "gender": 0, "case": 4},
|
||||
"they": {"L": "-PRON-", "person": 3, "number": 2, "gender": 0, "case": 1},
|
||||
"them": {"L": "-PRON-", "person": 3, "number": 2, "gender": 0, "case": 3},
|
||||
"their": {"L": "-PRON-", "person": 3, "number": 2, "gender": 0, "case": 2},
|
||||
"themselves": {"L": "-PRON-", "person": 3, "number": 2, "gender": 0, "case": 4}
|
||||
},
|
||||
|
||||
"PRP$": {
|
||||
"my": {"L": "-PRON-", "person": 1, "number": 1, "gender": 0, "case": 2},
|
||||
"your": {"L": "-PRON-", "person": 2, "number": 0, "gender": 0, "case": 2},
|
||||
"his": {"L": "-PRON-", "person": 3, "number": 1, "gender": 1, "case": 2},
|
||||
"her": {"L": "-PRON-", "person": 3, "number": 1, "gender": 2, "case": 2},
|
||||
"its": {"L": "-PRON-", "person": 3, "number": 1, "gender": 3, "case": 2},
|
||||
"our": {"L": "-PRON-", "person": 1, "number": 1, "gender": 0, "case": 2},
|
||||
"their": {"L": "-PRON-", "person": 3, "number": 2, "gender": 0, "case": 2}
|
||||
},
|
||||
"JJR": {
|
||||
"better": {"L": "good", "misc": 1}
|
||||
},
|
||||
"JJS": {
|
||||
"best": {"L": "good", "misc": 2}
|
||||
},
|
||||
|
||||
"RBR": {
|
||||
"better": {"L": "good", "misc": 1}
|
||||
},
|
||||
"RBS": {
|
||||
"best": {"L": "good", "misc": 2}
|
||||
}
|
||||
}
|
21
spacy/it/data/tokenizer/prefix.txt
Normal file
21
spacy/it/data/tokenizer/prefix.txt
Normal file
|
@ -0,0 +1,21 @@
|
|||
,
|
||||
"
|
||||
(
|
||||
[
|
||||
{
|
||||
*
|
||||
<
|
||||
$
|
||||
£
|
||||
“
|
||||
'
|
||||
``
|
||||
`
|
||||
#
|
||||
US$
|
||||
C$
|
||||
A$
|
||||
a-
|
||||
‘
|
||||
....
|
||||
...
|
647
spacy/it/data/tokenizer/specials.json
Normal file
647
spacy/it/data/tokenizer/specials.json
Normal file
|
@ -0,0 +1,647 @@
|
|||
{
|
||||
"'s": [{"F": "'s", "L": "'s"}],
|
||||
|
||||
"'S": [{"F": "'S", "L": "'s"}],
|
||||
|
||||
"ain't": [{"F": "ai", "L": "be", "pos": "VBP", "number": 2},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"aint": [{"F": "ai", "L": "be", "pos": "VBP", "number": 2},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
"Ain't": [{"F": "Ai", "L": "be", "pos": "VBP", "number": 2},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"aren't": [{"F": "are", "L": "be", "pos": "VBP", "number": 2},
|
||||
{"F": "n't", "L": "not"}],
|
||||
"arent": [{"F": "are", "L": "be", "pos": "VBP", "number": 2},
|
||||
{"F": "nt", "L": "not"}],
|
||||
"Aren't": [{"F": "Are", "L": "be", "pos": "VBP", "number": 2},
|
||||
{"F": "n't", "L": "not"}],
|
||||
|
||||
"can't": [{"F": "ca", "L": "can", "pos": "MD"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"cant": [{"F": "ca", "L": "can", "pos": "MD"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
"Can't": [{"F": "Ca", "L": "can", "pos": "MD"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"cannot": [{"F": "can", "pos": "MD"},
|
||||
{"F": "not", "L": "not", "pos": "RB"}],
|
||||
"Cannot": [{"F": "Can", "pos": "MD"},
|
||||
{"F": "not", "L": "not", "pos": "RB"}],
|
||||
|
||||
"could've": [{"F": "could", "pos": "MD"},
|
||||
{"F": "'ve", "L": "have", "pos": "VB"}],
|
||||
"couldve": [{"F": "could", "pos": "MD"},
|
||||
{"F": "ve", "L": "have", "pos": "VB"}],
|
||||
"Could've": [{"F": "Could", "pos": "MD"},
|
||||
{"F": "'ve", "L": "have", "pos": "VB"}],
|
||||
|
||||
"couldn't": [{"F": "could", "pos": "MD"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"couldnt": [{"F": "could", "pos": "MD"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
"Couldn't": [{"F": "Could", "pos": "MD"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"couldn't've": [{"F": "could", "pos": "MD"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
"couldntve": [{"F": "could", "pos": "MD"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"},
|
||||
{"F": "ve", "pos": "VB"}],
|
||||
"Couldn't've": [{"F": "Could", "pos": "MD"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"didn't": [{"F": "did", "pos": "VBD", "L": "do"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"didnt": [{"F": "did", "pos": "VBD", "L": "do"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
"Didn't": [{"F": "Did", "pos": "VBD", "L": "do"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"doesn't": [{"F": "does", "L": "do", "pos": "VBZ"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"doesnt": [{"F": "does", "L": "do", "pos": "VBZ"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
"Doesn't": [{"F": "Does", "L": "do", "pos": "VBZ"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"don't": [{"F": "do", "L": "do"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"dont": [{"F": "do", "L": "do"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
"Don't": [{"F": "Do", "L": "do"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"hadn't": [{"F": "had", "L": "have", "pos": "VBD"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"hadnt": [{"F": "had", "L": "have", "pos": "VBD"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
"Hadn't": [{"F": "Had", "L": "have", "pos": "VBD"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"hadn't've": [{"F": "had", "L": "have", "pos": "VBD"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"},
|
||||
{"F": "'ve", "L": "have", "pos": "VB"}],
|
||||
|
||||
"hasn't": [{"F": "has"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"hasnt": [{"F": "has"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
"haven't": [{"F": "have", "pos": "VB"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"havent": [{"F": "have", "pos": "VB"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
|
||||
|
||||
"he'd": [{"F": "he", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
"hed": [{"F": "he", "L": "-PRON-"},
|
||||
{"F": "d", "L": "would", "pos": "MD"}],
|
||||
|
||||
|
||||
"he'd've": [{"F": "he", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
"hedve": [{"F": "he", "L": "-PRON-"},
|
||||
{"F": "d", "L": "would", "pos": "MD"},
|
||||
{"F": "ve", "pos": "VB"}],
|
||||
|
||||
|
||||
"he'll": [{"F": "he", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
"he's": [{"F": "he", "L": "-PRON-"},
|
||||
{"F": "'s"}],
|
||||
|
||||
"hes": [{"F": "he", "L": "-PRON-"},
|
||||
{"F": "s"}],
|
||||
|
||||
|
||||
"how'd": [{"F": "how"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
"howd": [{"F": "how"},
|
||||
{"F": "d", "L": "would", "pos": "MD"}],
|
||||
|
||||
|
||||
"how'll": [{"F": "how"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
"howll": [{"F": "how"},
|
||||
{"F": "ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
|
||||
"how's": [{"F": "how"},
|
||||
{"F": "'s"}],
|
||||
"hows": [{"F": "how"},
|
||||
{"F": "s"}],
|
||||
|
||||
|
||||
"I'd": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
"I'd've": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"I'll": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
"i'll": [{"F": "i", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
"I'm": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "'m", "L": "be", "pos": "VBP", "number": 1, "tenspect": 1}],
|
||||
"i'm": [{"F": "i", "L": "-PRON-"},
|
||||
{"F": "'m", "L": "be", "pos": "VBP", "number": 1, "tenspect": 1}],
|
||||
"Im": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "m", "L": "be", "pos": "VBP", "number": 1, "tenspect": 1}],
|
||||
"im": [{"F": "i", "L": "-PRON-"},
|
||||
{"F": "m", "L": "be", "pos": "VBP", "number": 1, "tenspect": 1}],
|
||||
|
||||
"I'ma": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "'ma"}],
|
||||
"i'ma": [{"F": "i", "L": "-PRON-"},
|
||||
{"F": "'ma"}],
|
||||
|
||||
|
||||
"I've": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "'ve", "pos": "VB", "L": "have", "pos": "MD"}],
|
||||
"i've": [{"F": "i", "L": "-PRON-"},
|
||||
{"F": "'ve", "pos": "VB", "L": "have", "pos": "MD"}],
|
||||
|
||||
"isn't": [{"F": "is", "L": "be", "pos": "VBZ"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"isnt": [{"F": "is", "L": "be", "pos": "VBZ"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
|
||||
"Isn't": [{"F": "Is", "L": "be", "pos": "VBZ"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
|
||||
"It'd": [{"F": "It", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
|
||||
"it'd": [{"F": "it", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
"it'd've": [{"F": "it", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"},
|
||||
{"F": "'ve"}],
|
||||
|
||||
"it'll": [{"F": "it", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
"itll": [{"F": "it", "L": "-PRON-"},
|
||||
{"F": "ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
|
||||
"it's": [{"F": "it", "L": "-PRON-"},
|
||||
{"F": "'s"}],
|
||||
|
||||
"let's": [{"F": "let"},
|
||||
{"F": "'s"}],
|
||||
"lets": [{"F": "let"},
|
||||
{"F": "s", "L": "'s"}],
|
||||
|
||||
|
||||
"mightn't": [{"F": "might"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"mightn't've": [{"F": "might"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"might've": [{"F": "might"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"mustn't": [{"F": "must"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"must've": [{"F": "must"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"needn't": [{"F": "need"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"not've": [{"F": "not"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"shan't": [{"F": "sha"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"she'd": [{"F": "she", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
"she'd've": [{"F": "she", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"she'll": [{"F": "she", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will"}],
|
||||
|
||||
"she's": [{"F": "she", "L": "-PRON-"},
|
||||
{"F": "'s"}],
|
||||
|
||||
"should've": [{"F": "should"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"shouldn't": [{"F": "should"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"shouldn't've": [{"F": "should"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"},
|
||||
{"F": "'ve"}],
|
||||
|
||||
"that's": [{"F": "that"},
|
||||
{"F": "'s"}],
|
||||
|
||||
"thats": [{"F": "that"},
|
||||
{"F": "s", "L": "'s"}],
|
||||
|
||||
|
||||
"there'd": [{"F": "there"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
"there'd've": [{"F": "there"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"there's": [{"F": "there"},
|
||||
{"F": "'s"}],
|
||||
|
||||
"they'd": [{"F": "they", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD", "pos": "VB"}],
|
||||
"They'd": [{"F": "They", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD", "pos": "VB"}],
|
||||
|
||||
|
||||
"they'd've": [{"F": "they", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
"They'd've": [{"F": "They", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"they'll": [{"F": "they", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
"They'll": [{"F": "They", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
|
||||
"they're": [{"F": "they", "L": "-PRON-"},
|
||||
{"F": "'re"}],
|
||||
"They're": [{"F": "They", "L": "-PRON-"},
|
||||
{"F": "'re"}],
|
||||
|
||||
"they've": [{"F": "they", "L": "-PRON-"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
"They've": [{"F": "They", "L": "-PRON-"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"wasn't": [{"F": "was"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"we'd": [{"F": "we"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
"We'd": [{"F": "We"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
|
||||
"we'd've": [{"F": "we"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"we'll": [{"F": "we"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
"We'll": [{"F": "We", "L": "we"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
|
||||
"we're": [{"F": "we"},
|
||||
{"F": "'re"}],
|
||||
"We're": [{"F": "We"},
|
||||
{"F": "'re"}],
|
||||
|
||||
"we've": [{"F": "we"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
"We've": [{"F": "We"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
|
||||
"weren't": [{"F": "were"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"what'll": [{"F": "what"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
"what're": [{"F": "what"},
|
||||
{"F": "'re"}],
|
||||
|
||||
"what's": [{"F": "what"},
|
||||
{"F": "'s"}],
|
||||
|
||||
"what've": [{"F": "what"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"when's": [{"F": "when"},
|
||||
{"F": "'s"}],
|
||||
|
||||
"where'd": [{"F": "where"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
"where's": [{"F": "where"},
|
||||
{"F": "'s"}],
|
||||
|
||||
"where've": [{"F": "where"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"who'd": [{"F": "who"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
"who'll": [{"F": "who"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
"who're": [{"F": "who"},
|
||||
{"F": "'re"}],
|
||||
|
||||
"who's": [{"F": "who"},
|
||||
{"F": "'s"}],
|
||||
|
||||
"who've": [{"F": "who"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"why'll": [{"F": "why"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
"why're": [{"F": "why"},
|
||||
{"F": "'re"}],
|
||||
|
||||
"why's": [{"F": "why"},
|
||||
{"F": "'s"}],
|
||||
|
||||
"won't": [{"F": "wo"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
"wont": [{"F": "wo"},
|
||||
{"F": "nt", "L": "not", "pos": "RB"}],
|
||||
|
||||
|
||||
"would've": [{"F": "would"},
|
||||
{"F": "'ve", "pos": "VB"}],
|
||||
|
||||
"wouldn't": [{"F": "would"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
"wouldn't've": [{"F": "would"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"},
|
||||
{"F": "'ve", "L": "have", "pos": "VB"}],
|
||||
|
||||
"you'd": [{"F": "you", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
"you'd've": [{"F": "you", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"},
|
||||
{"F": "'ve", "L": "have", "pos": "VB"}],
|
||||
|
||||
"you'll": [{"F": "you", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
"You'll": [{"F": "You", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
|
||||
"you're": [{"F": "you", "L": "-PRON-"},
|
||||
{"F": "'re"}],
|
||||
"You're": [{"F": "You", "L": "-PRON-"},
|
||||
{"F": "'re"}],
|
||||
|
||||
|
||||
"you've": [{"F": "you", "L": "-PRON-"},
|
||||
{"F": "'ve", "L": "have", "pos": "VB"}],
|
||||
|
||||
"You've": [{"F": "You", "L": "-PRON-"},
|
||||
{"F": "'ve", "L": "have", "pos": "VB"}],
|
||||
|
||||
|
||||
"'em": [{"F": "'em"}],
|
||||
|
||||
"'ol": [{"F": "'ol"}],
|
||||
|
||||
"vs.": [{"F": "vs."}],
|
||||
|
||||
"Ms.": [{"F": "Ms."}],
|
||||
"Mr.": [{"F": "Mr."}],
|
||||
"Dr.": [{"F": "Dr."}],
|
||||
"Mrs.": [{"F": "Mrs."}],
|
||||
"Messrs.": [{"F": "Messrs."}],
|
||||
"Gov.": [{"F": "Gov."}],
|
||||
"Gen.": [{"F": "Gen."}],
|
||||
|
||||
"Mt.": [{"F": "Mt.", "L": "Mount"}],
|
||||
|
||||
"''": [{"F": "''"}],
|
||||
|
||||
"Corp.": [{"F": "Corp."}],
|
||||
"Inc.": [{"F": "Inc."}],
|
||||
"Co.": [{"F": "Co."}],
|
||||
"co.": [{"F": "co."}],
|
||||
"Ltd.": [{"F": "Ltd."}],
|
||||
"Bros.": [{"F": "Bros."}],
|
||||
|
||||
"Rep.": [{"F": "Rep."}],
|
||||
"Sen.": [{"F": "Sen."}],
|
||||
"Jr.": [{"F": "Jr."}],
|
||||
"Rev.": [{"F": "Rev."}],
|
||||
"Adm.": [{"F": "Adm."}],
|
||||
"St.": [{"F": "St."}],
|
||||
|
||||
"a.m.": [{"F": "a.m."}],
|
||||
"p.m.": [{"F": "p.m."}],
|
||||
|
||||
"1a.m.": [{"F": "1"}, {"F": "a.m."}],
|
||||
"2a.m.": [{"F": "2"}, {"F": "a.m."}],
|
||||
"3a.m.": [{"F": "3"}, {"F": "a.m."}],
|
||||
"4a.m.": [{"F": "4"}, {"F": "a.m."}],
|
||||
"5a.m.": [{"F": "5"}, {"F": "a.m."}],
|
||||
"6a.m.": [{"F": "6"}, {"F": "a.m."}],
|
||||
"7a.m.": [{"F": "7"}, {"F": "a.m."}],
|
||||
"8a.m.": [{"F": "8"}, {"F": "a.m."}],
|
||||
"9a.m.": [{"F": "9"}, {"F": "a.m."}],
|
||||
"10a.m.": [{"F": "10"}, {"F": "a.m."}],
|
||||
"11a.m.": [{"F": "11"}, {"F": "a.m."}],
|
||||
"12a.m.": [{"F": "12"}, {"F": "a.m."}],
|
||||
"1am": [{"F": "1"}, {"F": "am", "L": "a.m."}],
|
||||
"2am": [{"F": "2"}, {"F": "am", "L": "a.m."}],
|
||||
"3am": [{"F": "3"}, {"F": "am", "L": "a.m."}],
|
||||
"4am": [{"F": "4"}, {"F": "am", "L": "a.m."}],
|
||||
"5am": [{"F": "5"}, {"F": "am", "L": "a.m."}],
|
||||
"6am": [{"F": "6"}, {"F": "am", "L": "a.m."}],
|
||||
"7am": [{"F": "7"}, {"F": "am", "L": "a.m."}],
|
||||
"8am": [{"F": "8"}, {"F": "am", "L": "a.m."}],
|
||||
"9am": [{"F": "9"}, {"F": "am", "L": "a.m."}],
|
||||
"10am": [{"F": "10"}, {"F": "am", "L": "a.m."}],
|
||||
"11am": [{"F": "11"}, {"F": "am", "L": "a.m."}],
|
||||
"12am": [{"F": "12"}, {"F": "am", "L": "a.m."}],
|
||||
|
||||
|
||||
"p.m.": [{"F": "p.m."}],
|
||||
"1p.m.": [{"F": "1"}, {"F": "p.m."}],
|
||||
"2p.m.": [{"F": "2"}, {"F": "p.m."}],
|
||||
"3p.m.": [{"F": "3"}, {"F": "p.m."}],
|
||||
"4p.m.": [{"F": "4"}, {"F": "p.m."}],
|
||||
"5p.m.": [{"F": "5"}, {"F": "p.m."}],
|
||||
"6p.m.": [{"F": "6"}, {"F": "p.m."}],
|
||||
"7p.m.": [{"F": "7"}, {"F": "p.m."}],
|
||||
"8p.m.": [{"F": "8"}, {"F": "p.m."}],
|
||||
"9p.m.": [{"F": "9"}, {"F": "p.m."}],
|
||||
"10p.m.": [{"F": "10"}, {"F": "p.m."}],
|
||||
"11p.m.": [{"F": "11"}, {"F": "p.m."}],
|
||||
"12p.m.": [{"F": "12"}, {"F": "p.m."}],
|
||||
"1pm": [{"F": "1"}, {"F": "pm", "L": "p.m."}],
|
||||
"2pm": [{"F": "2"}, {"F": "pm", "L": "p.m."}],
|
||||
"3pm": [{"F": "3"}, {"F": "pm", "L": "p.m."}],
|
||||
"4pm": [{"F": "4"}, {"F": "pm", "L": "p.m."}],
|
||||
"5pm": [{"F": "5"}, {"F": "pm", "L": "p.m."}],
|
||||
"6pm": [{"F": "6"}, {"F": "pm", "L": "p.m."}],
|
||||
"7pm": [{"F": "7"}, {"F": "pm", "L": "p.m."}],
|
||||
"8pm": [{"F": "8"}, {"F": "pm", "L": "p.m."}],
|
||||
"9pm": [{"F": "9"}, {"F": "pm", "L": "p.m."}],
|
||||
"10pm": [{"F": "10"}, {"F": "pm", "L": "p.m."}],
|
||||
"11pm": [{"F": "11"}, {"F": "pm", "L": "p.m."}],
|
||||
"12pm": [{"F": "12"}, {"F": "pm", "L": "p.m."}],
|
||||
|
||||
"Jan.": [{"F": "Jan."}],
|
||||
"Feb.": [{"F": "Feb."}],
|
||||
"Mar.": [{"F": "Mar."}],
|
||||
"Apr.": [{"F": "Apr."}],
|
||||
"May.": [{"F": "May."}],
|
||||
"Jun.": [{"F": "Jun."}],
|
||||
"Jul.": [{"F": "Jul."}],
|
||||
"Aug.": [{"F": "Aug."}],
|
||||
"Sep.": [{"F": "Sep."}],
|
||||
"Sept.": [{"F": "Sept."}],
|
||||
"Oct.": [{"F": "Oct."}],
|
||||
"Nov.": [{"F": "Nov."}],
|
||||
"Dec.": [{"F": "Dec."}],
|
||||
|
||||
"Ala.": [{"F": "Ala."}],
|
||||
"Ariz.": [{"F": "Ariz."}],
|
||||
"Ark.": [{"F": "Ark."}],
|
||||
"Calif.": [{"F": "Calif."}],
|
||||
"Colo.": [{"F": "Colo."}],
|
||||
"Conn.": [{"F": "Conn."}],
|
||||
"Del.": [{"F": "Del."}],
|
||||
"D.C.": [{"F": "D.C."}],
|
||||
"Fla.": [{"F": "Fla."}],
|
||||
"Ga.": [{"F": "Ga."}],
|
||||
"Ill.": [{"F": "Ill."}],
|
||||
"Ind.": [{"F": "Ind."}],
|
||||
"Kans.": [{"F": "Kans."}],
|
||||
"Kan.": [{"F": "Kan."}],
|
||||
"Ky.": [{"F": "Ky."}],
|
||||
"La.": [{"F": "La."}],
|
||||
"Md.": [{"F": "Md."}],
|
||||
"Mass.": [{"F": "Mass."}],
|
||||
"Mich.": [{"F": "Mich."}],
|
||||
"Minn.": [{"F": "Minn."}],
|
||||
"Miss.": [{"F": "Miss."}],
|
||||
"Mo.": [{"F": "Mo."}],
|
||||
"Mont.": [{"F": "Mont."}],
|
||||
"Nebr.": [{"F": "Nebr."}],
|
||||
"Neb.": [{"F": "Neb."}],
|
||||
"Nev.": [{"F": "Nev."}],
|
||||
"N.H.": [{"F": "N.H."}],
|
||||
"N.J.": [{"F": "N.J."}],
|
||||
"N.M.": [{"F": "N.M."}],
|
||||
"N.Y.": [{"F": "N.Y."}],
|
||||
"N.C.": [{"F": "N.C."}],
|
||||
"N.D.": [{"F": "N.D."}],
|
||||
"Okla.": [{"F": "Okla."}],
|
||||
"Ore.": [{"F": "Ore."}],
|
||||
"Pa.": [{"F": "Pa."}],
|
||||
"Tenn.": [{"F": "Tenn."}],
|
||||
"Va.": [{"F": "Va."}],
|
||||
"Wash.": [{"F": "Wash."}],
|
||||
"Wis.": [{"F": "Wis."}],
|
||||
|
||||
":)": [{"F": ":)"}],
|
||||
"<3": [{"F": "<3"}],
|
||||
";)": [{"F": ";)"}],
|
||||
"(:": [{"F": "(:"}],
|
||||
":(": [{"F": ":("}],
|
||||
"-_-": [{"F": "-_-"}],
|
||||
"=)": [{"F": "=)"}],
|
||||
":/": [{"F": ":/"}],
|
||||
":>": [{"F": ":>"}],
|
||||
";-)": [{"F": ";-)"}],
|
||||
":Y": [{"F": ":Y"}],
|
||||
":P": [{"F": ":P"}],
|
||||
":-P": [{"F": ":-P"}],
|
||||
":3": [{"F": ":3"}],
|
||||
"=3": [{"F": "=3"}],
|
||||
"xD": [{"F": "xD"}],
|
||||
"^_^": [{"F": "^_^"}],
|
||||
"=]": [{"F": "=]"}],
|
||||
"=D": [{"F": "=D"}],
|
||||
"<333": [{"F": "<333"}],
|
||||
":))": [{"F": ":))"}],
|
||||
":0": [{"F": ":0"}],
|
||||
"-__-": [{"F": "-__-"}],
|
||||
"xDD": [{"F": "xDD"}],
|
||||
"o_o": [{"F": "o_o"}],
|
||||
"o_O": [{"F": "o_O"}],
|
||||
"V_V": [{"F": "V_V"}],
|
||||
"=[[": [{"F": "=[["}],
|
||||
"<33": [{"F": "<33"}],
|
||||
";p": [{"F": ";p"}],
|
||||
";D": [{"F": ";D"}],
|
||||
";-p": [{"F": ";-p"}],
|
||||
";(": [{"F": ";("}],
|
||||
":p": [{"F": ":p"}],
|
||||
":]": [{"F": ":]"}],
|
||||
":O": [{"F": ":O"}],
|
||||
":-/": [{"F": ":-/"}],
|
||||
":-)": [{"F": ":-)"}],
|
||||
":(((": [{"F": ":((("}],
|
||||
":((": [{"F": ":(("}],
|
||||
":')": [{"F": ":')"}],
|
||||
"(^_^)": [{"F": "(^_^)"}],
|
||||
"(=": [{"F": "(="}],
|
||||
"o.O": [{"F": "o.O"}],
|
||||
"\")": [{"F": "\")"}],
|
||||
"a.": [{"F": "a."}],
|
||||
"b.": [{"F": "b."}],
|
||||
"c.": [{"F": "c."}],
|
||||
"d.": [{"F": "d."}],
|
||||
"e.": [{"F": "e."}],
|
||||
"f.": [{"F": "f."}],
|
||||
"g.": [{"F": "g."}],
|
||||
"h.": [{"F": "h."}],
|
||||
"i.": [{"F": "i."}],
|
||||
"j.": [{"F": "j."}],
|
||||
"k.": [{"F": "k."}],
|
||||
"l.": [{"F": "l."}],
|
||||
"m.": [{"F": "m."}],
|
||||
"n.": [{"F": "n."}],
|
||||
"o.": [{"F": "o."}],
|
||||
"p.": [{"F": "p."}],
|
||||
"q.": [{"F": "q."}],
|
||||
"s.": [{"F": "s."}],
|
||||
"t.": [{"F": "t."}],
|
||||
"u.": [{"F": "u."}],
|
||||
"v.": [{"F": "v."}],
|
||||
"w.": [{"F": "w."}],
|
||||
"x.": [{"F": "x."}],
|
||||
"y.": [{"F": "y."}],
|
||||
"z.": [{"F": "z."}],
|
||||
|
||||
"i.e.": [{"F": "i.e."}],
|
||||
"I.e.": [{"F": "I.e."}],
|
||||
"I.E.": [{"F": "I.E."}],
|
||||
"e.g.": [{"F": "e.g."}],
|
||||
"E.g.": [{"F": "E.g."}],
|
||||
"E.G.": [{"F": "E.G."}],
|
||||
"\n": [{"F": "\n", "pos": "SP"}],
|
||||
"\t": [{"F": "\t", "pos": "SP"}],
|
||||
" ": [{"F": " ", "pos": "SP"}]
|
||||
}
|
26
spacy/it/data/tokenizer/suffix.txt
Normal file
26
spacy/it/data/tokenizer/suffix.txt
Normal file
|
@ -0,0 +1,26 @@
|
|||
,
|
||||
\"
|
||||
\)
|
||||
\]
|
||||
\}
|
||||
\*
|
||||
\!
|
||||
\?
|
||||
%
|
||||
\$
|
||||
>
|
||||
:
|
||||
;
|
||||
'
|
||||
”
|
||||
''
|
||||
's
|
||||
'S
|
||||
’s
|
||||
’S
|
||||
’
|
||||
\.\.
|
||||
\.\.\.
|
||||
\.\.\.\.
|
||||
(?<=[a-z0-9)\]"'%\)])\.
|
||||
(?<=[0-9])km
|
198
spacy/it/data/vocab/gazetteer.json
Normal file
198
spacy/it/data/vocab/gazetteer.json
Normal file
|
@ -0,0 +1,198 @@
|
|||
{
|
||||
"Reddit": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "reddit"}]
|
||||
]
|
||||
],
|
||||
"SeptemberElevenAttacks": [
|
||||
"EVENT",
|
||||
{},
|
||||
[
|
||||
[
|
||||
{"orth": "9/11"}
|
||||
],
|
||||
[
|
||||
{"lower": "Septmber"},
|
||||
{"lower": "Eleven"}
|
||||
],
|
||||
[
|
||||
{"lower": "september"},
|
||||
{"orth": "11"}
|
||||
]
|
||||
]
|
||||
],
|
||||
"Linux": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "linux"}]
|
||||
]
|
||||
],
|
||||
"Haskell": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "haskell"}]
|
||||
]
|
||||
],
|
||||
"HaskellCurry": [
|
||||
"PERSON",
|
||||
{},
|
||||
[
|
||||
[
|
||||
{"lower": "haskell"},
|
||||
{"lower": "curry"}
|
||||
]
|
||||
]
|
||||
],
|
||||
"Javascript": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "javascript"}]
|
||||
]
|
||||
],
|
||||
"CSS": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "css"}],
|
||||
[{"lower": "css3"}]
|
||||
]
|
||||
],
|
||||
"displaCy": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "displacy"}]
|
||||
]
|
||||
],
|
||||
"spaCy": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"orth": "spaCy"}]
|
||||
]
|
||||
],
|
||||
|
||||
"HTML": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "html"}],
|
||||
[{"lower": "html5"}]
|
||||
]
|
||||
],
|
||||
"Python": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"orth": "Python"}]
|
||||
]
|
||||
],
|
||||
"Ruby": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"orth": "Ruby"}]
|
||||
]
|
||||
],
|
||||
"Digg": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "digg"}]
|
||||
]
|
||||
],
|
||||
"FoxNews": [
|
||||
"ORG",
|
||||
{},
|
||||
[
|
||||
[{"orth": "Fox"}],
|
||||
[{"orth": "News"}]
|
||||
]
|
||||
],
|
||||
"Google": [
|
||||
"ORG",
|
||||
{},
|
||||
[
|
||||
[{"lower": "google"}]
|
||||
]
|
||||
],
|
||||
"Mac": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "mac"}]
|
||||
]
|
||||
],
|
||||
"Wikipedia": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "wikipedia"}]
|
||||
]
|
||||
],
|
||||
"Windows": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"orth": "Windows"}]
|
||||
]
|
||||
],
|
||||
"Dell": [
|
||||
"ORG",
|
||||
{},
|
||||
[
|
||||
[{"lower": "dell"}]
|
||||
]
|
||||
],
|
||||
"Facebook": [
|
||||
"ORG",
|
||||
{},
|
||||
[
|
||||
[{"lower": "facebook"}]
|
||||
]
|
||||
],
|
||||
"Blizzard": [
|
||||
"ORG",
|
||||
{},
|
||||
[
|
||||
[{"orth": "Facebook"}]
|
||||
]
|
||||
],
|
||||
"Ubuntu": [
|
||||
"ORG",
|
||||
{},
|
||||
[
|
||||
[{"orth": "Ubuntu"}]
|
||||
]
|
||||
],
|
||||
"Youtube": [
|
||||
"PRODUCT",
|
||||
{},
|
||||
[
|
||||
[{"lower": "youtube"}]
|
||||
]
|
||||
],
|
||||
"false_positives": [
|
||||
null,
|
||||
{},
|
||||
[
|
||||
[{"orth": "Shit"}],
|
||||
[{"orth": "Weed"}],
|
||||
[{"orth": "Cool"}],
|
||||
[{"orth": "Btw"}],
|
||||
[{"orth": "Bah"}],
|
||||
[{"orth": "Bullshit"}],
|
||||
[{"orth": "Lol"}],
|
||||
[{"orth": "Yo"}, {"lower": "dawg"}],
|
||||
[{"orth": "Yay"}],
|
||||
[{"orth": "Ahh"}],
|
||||
[{"orth": "Yea"}],
|
||||
[{"orth": "Bah"}]
|
||||
]
|
||||
]
|
||||
}
|
31
spacy/it/data/vocab/lemma_rules.json
Normal file
31
spacy/it/data/vocab/lemma_rules.json
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"noun": [
|
||||
["s", ""],
|
||||
["ses", "s"],
|
||||
["ves", "f"],
|
||||
["xes", "x"],
|
||||
["zes", "z"],
|
||||
["ches", "ch"],
|
||||
["shes", "sh"],
|
||||
["men", "man"],
|
||||
["ies", "y"]
|
||||
],
|
||||
|
||||
"verb": [
|
||||
["s", ""],
|
||||
["ies", "y"],
|
||||
["es", "e"],
|
||||
["es", ""],
|
||||
["ed", "e"],
|
||||
["ed", ""],
|
||||
["ing", "e"],
|
||||
["ing", ""]
|
||||
],
|
||||
|
||||
"adj": [
|
||||
["er", ""],
|
||||
["est", ""],
|
||||
["er", "e"],
|
||||
["est", "e"]
|
||||
]
|
||||
}
|
BIN
spacy/it/data/vocab/lexemes.bin
Normal file
BIN
spacy/it/data/vocab/lexemes.bin
Normal file
Binary file not shown.
1
spacy/it/data/vocab/oov_prob
Normal file
1
spacy/it/data/vocab/oov_prob
Normal file
|
@ -0,0 +1 @@
|
|||
-20.000000
|
1514125
spacy/it/data/vocab/strings.txt
Normal file
1514125
spacy/it/data/vocab/strings.txt
Normal file
File diff suppressed because it is too large
Load Diff
56
spacy/it/data/vocab/tag_map.json
Normal file
56
spacy/it/data/vocab/tag_map.json
Normal file
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
"$(": {"pos": "PUNCT", "PunctType": "Brck"},
|
||||
"$,": {"pos": "PUNCT", "PunctType": "Comm"},
|
||||
"$.": {"pos": "PUNCT", "PunctType": "Peri"},
|
||||
"ADJA": {"pos": "ADJ"},
|
||||
"ADJD": {"pos": "ADJ", "Variant": "Short"},
|
||||
"ADV": {"pos": "ADV"},
|
||||
"APPO": {"pos": "ADP", "AdpType": "Post"},
|
||||
"APPR": {"pos": "ADP", "AdpType": "Prep"},
|
||||
"APPRART": {"pos": "ADP", "AdpType": "Prep", "PronType": "Art"},
|
||||
"APZR": {"pos": "ADP", "AdpType": "Circ"},
|
||||
"ART": {"pos": "DET", "PronType": "Art"},
|
||||
"CARD": {"pos": "NUM", "NumType": "Card"},
|
||||
"FM": {"pos": "X", "Foreign": "Yes"},
|
||||
"ITJ": {"pos": "INTJ"},
|
||||
"KOKOM": {"pos": "CONJ", "ConjType": "Comp"},
|
||||
"KON": {"pos": "CONJ"},
|
||||
"KOUI": {"pos": "SCONJ"},
|
||||
"KOUS": {"pos": "SCONJ"},
|
||||
"NE": {"pos": "PROPN"},
|
||||
"NN": {"pos": "NOUN"},
|
||||
"PAV": {"pos": "ADV", "PronType": "Dem"},
|
||||
"PDAT": {"pos": "DET", "PronType": "Dem"},
|
||||
"PDS": {"pos": "PRON", "PronType": "Dem"},
|
||||
"PIAT": {"pos": "DET", "PronType": "Ind,Neg,Tot"},
|
||||
"PIDAT": {"pos": "DET", "AdjType": "Pdt", "PronType": "Ind,Neg,Tot"},
|
||||
"PIS": {"pos": "PRON", "PronType": "Ind,Neg,Tot"},
|
||||
"PPER": {"pos": "PRON", "PronType": "Prs"},
|
||||
"PPOSAT": {"pos": "DET", "Poss": "Yes", "PronType": "Prs"},
|
||||
"PPOSS": {"pos": "PRON", "Poss": "Yes", "PronType": "Prs"},
|
||||
"PRELAT": {"pos": "DET", "PronType": "Rel"},
|
||||
"PRELS": {"pos": "PRON", "PronType": "Rel"},
|
||||
"PRF": {"pos": "PRON", "PronType": "Prs", "Reflex": "Yes"},
|
||||
"PTKA": {"pos": "PART"},
|
||||
"PTKANT": {"pos": "PART", "PartType": "Res"},
|
||||
"PTKNEG": {"pos": "PART", "Negative": "Neg"},
|
||||
"PTKVZ": {"pos": "PART", "PartType": "Vbp"},
|
||||
"PTKZU": {"pos": "PART", "PartType": "Inf"},
|
||||
"PWAT": {"pos": "DET", "PronType": "Int"},
|
||||
"PWAV": {"pos": "ADV", "PronType": "Int"},
|
||||
"PWS": {"pos": "PRON", "PronType": "Int"},
|
||||
"TRUNC": {"pos": "X", "Hyph": "Yes"},
|
||||
"VAFIN": {"pos": "AUX", "Mood": "Ind", "VerbForm": "Fin"},
|
||||
"VAIMP": {"pos": "AUX", "Mood": "Imp", "VerbForm": "Fin"},
|
||||
"VAINF": {"pos": "AUX", "VerbForm": "Inf"},
|
||||
"VAPP": {"pos": "AUX", "Aspect": "Perf", "VerbForm": "Part"},
|
||||
"VMFIN": {"pos": "VERB", "Mood": "Ind", "VerbForm": "Fin", "VerbType": "Mod"},
|
||||
"VMINF": {"pos": "VERB", "VerbForm": "Inf", "VerbType": "Mod"},
|
||||
"VMPP": {"pos": "VERB", "Aspect": "Perf", "VerbForm": "Part", "VerbType": "Mod"},
|
||||
"VVFIN": {"pos": "VERB", "Mood": "Ind", "VerbForm": "Fin"},
|
||||
"VVIMP": {"pos": "VERB", "Mood": "Imp", "VerbForm": "Fin"},
|
||||
"VVINF": {"pos": "VERB", "VerbForm": "Inf"},
|
||||
"VVIZU": {"pos": "VERB", "VerbForm": "Inf"},
|
||||
"VVPP": {"pos": "VERB", "Aspect": "Perf", "VerbForm": "Part"},
|
||||
"XY": {"pos": "X"}
|
||||
}
|
314
spacy/it/data/wordnet/Makefile
Normal file
314
spacy/it/data/wordnet/Makefile
Normal file
|
@ -0,0 +1,314 @@
|
|||
# Makefile.in generated by automake 1.9 from Makefile.am.
|
||||
# dict/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
srcdir = .
|
||||
top_srcdir = ..
|
||||
|
||||
pkgdatadir = $(datadir)/WordNet
|
||||
pkglibdir = $(libdir)/WordNet
|
||||
pkgincludedir = $(includedir)/WordNet
|
||||
top_builddir = ..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = /usr/csl/bin/install -c
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
subdir = dict
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
||||
am__installdirs = "$(DESTDIR)$(dictdir)"
|
||||
dictDATA_INSTALL = $(INSTALL_DATA)
|
||||
DATA = $(dict_DATA)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run aclocal-1.9
|
||||
AMDEP_FALSE = #
|
||||
AMDEP_TRUE =
|
||||
AMTAR = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run tar
|
||||
AUTOCONF = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run automake-1.9
|
||||
AWK = nawk
|
||||
CC = gcc
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -O2
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CYGPATH_W = echo
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = egrep
|
||||
EXEEXT =
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
||||
LDFLAGS =
|
||||
LIBOBJS =
|
||||
LIBS =
|
||||
LTLIBOBJS =
|
||||
MAKEINFO = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run makeinfo
|
||||
OBJEXT = o
|
||||
PACKAGE = WordNet
|
||||
PACKAGE_BUGREPORT = wordnet@princeton.edu
|
||||
PACKAGE_NAME = WordNet
|
||||
PACKAGE_STRING = WordNet 3.0
|
||||
PACKAGE_TARNAME = wordnet
|
||||
PACKAGE_VERSION = 3.0
|
||||
PATH_SEPARATOR = :
|
||||
RANLIB = ranlib
|
||||
SET_MAKE =
|
||||
SHELL = /bin/bash
|
||||
STRIP =
|
||||
TCL_INCLUDE_SPEC = -I/usr/csl/include
|
||||
TCL_LIB_SPEC = -L/usr/csl/lib -ltcl8.4
|
||||
TK_LIBS = -L/usr/openwin/lib -lX11 -ldl -lpthread -lsocket -lnsl -lm
|
||||
TK_LIB_SPEC = -L/usr/csl/lib -ltk8.4
|
||||
TK_PREFIX = /usr/csl
|
||||
TK_XINCLUDES = -I/usr/openwin/include
|
||||
VERSION = 3.0
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_RANLIB = ranlib
|
||||
ac_ct_STRIP =
|
||||
ac_prefix = /usr/local/WordNet-3.0
|
||||
am__fastdepCC_FALSE = #
|
||||
am__fastdepCC_TRUE =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = ${AMTAR} chof - "$$tardir"
|
||||
am__untar = ${AMTAR} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build_alias =
|
||||
datadir = ${prefix}/share
|
||||
exec_prefix = ${prefix}
|
||||
host_alias =
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${prefix}/info
|
||||
install_sh = /people/wn/src/Release/3.0/Unix/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${prefix}/man
|
||||
mkdir_p = $(install_sh) -d
|
||||
oldincludedir = /usr/include
|
||||
prefix = /usr/local/WordNet-3.0
|
||||
program_transform_name = s,x,x,
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
dictdir = $(prefix)/dict
|
||||
dict_DATA = adj.exc adv.exc cntlist cntlist.rev data.adj data.adv data.noun data.verb frames.vrb index.adj index.adv index.noun index.sense index.verb log.grind.3.0 noun.exc sentidx.vrb sents.vrb verb.Framestext verb.exc lexnames
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu dict/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu dict/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
uninstall-info-am:
|
||||
install-dictDATA: $(dict_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(dictdir)" || $(mkdir_p) "$(DESTDIR)$(dictdir)"
|
||||
@list='$(dict_DATA)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(dictDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(dictdir)/$$f'"; \
|
||||
$(dictDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(dictdir)/$$f"; \
|
||||
done
|
||||
|
||||
uninstall-dictDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(dict_DATA)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(dictdir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(dictdir)/$$f"; \
|
||||
done
|
||||
tags: TAGS
|
||||
TAGS:
|
||||
|
||||
ctags: CTAGS
|
||||
CTAGS:
|
||||
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkdir_p) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(DATA)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(dictdir)"; do \
|
||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-dictDATA
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-dictDATA uninstall-info-am
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic distclean \
|
||||
distclean-generic distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am \
|
||||
install-dictDATA install-exec install-exec-am install-info \
|
||||
install-info-am install-man install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
|
||||
pdf-am ps ps-am uninstall uninstall-am uninstall-dictDATA \
|
||||
uninstall-info-am
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
2
spacy/it/data/wordnet/Makefile.am
Normal file
2
spacy/it/data/wordnet/Makefile.am
Normal file
|
@ -0,0 +1,2 @@
|
|||
dictdir = $(prefix)/dict
|
||||
dict_DATA = adj.exc adv.exc cntlist cntlist.rev data.adj data.adv data.noun data.verb frames.vrb index.adj index.adv index.noun index.sense index.verb log.grind.3.0 noun.exc sentidx.vrb sents.vrb verb.Framestext verb.exc lexnames
|
314
spacy/it/data/wordnet/Makefile.in
Normal file
314
spacy/it/data/wordnet/Makefile.in
Normal file
|
@ -0,0 +1,314 @@
|
|||
# Makefile.in generated by automake 1.9 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
top_builddir = ..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = @INSTALL@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
subdir = dict
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
||||
$(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
||||
am__installdirs = "$(DESTDIR)$(dictdir)"
|
||||
dictDATA_INSTALL = $(INSTALL_DATA)
|
||||
DATA = $(dict_DATA)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
AMDEP_TRUE = @AMDEP_TRUE@
|
||||
AMTAR = @AMTAR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
TCL_INCLUDE_SPEC = @TCL_INCLUDE_SPEC@
|
||||
TCL_LIB_SPEC = @TCL_LIB_SPEC@
|
||||
TK_LIBS = @TK_LIBS@
|
||||
TK_LIB_SPEC = @TK_LIB_SPEC@
|
||||
TK_PREFIX = @TK_PREFIX@
|
||||
TK_XINCLUDES = @TK_XINCLUDES@
|
||||
VERSION = @VERSION@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
ac_prefix = @ac_prefix@
|
||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build_alias = @build_alias@
|
||||
datadir = @datadir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host_alias = @host_alias@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
dictdir = $(prefix)/dict
|
||||
dict_DATA = adj.exc adv.exc cntlist cntlist.rev data.adj data.adv data.noun data.verb frames.vrb index.adj index.adv index.noun index.sense index.verb log.grind.3.0 noun.exc sentidx.vrb sents.vrb verb.Framestext verb.exc lexnames
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu dict/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu dict/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
uninstall-info-am:
|
||||
install-dictDATA: $(dict_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(dictdir)" || $(mkdir_p) "$(DESTDIR)$(dictdir)"
|
||||
@list='$(dict_DATA)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(dictDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(dictdir)/$$f'"; \
|
||||
$(dictDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(dictdir)/$$f"; \
|
||||
done
|
||||
|
||||
uninstall-dictDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(dict_DATA)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(dictdir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(dictdir)/$$f"; \
|
||||
done
|
||||
tags: TAGS
|
||||
TAGS:
|
||||
|
||||
ctags: CTAGS
|
||||
CTAGS:
|
||||
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkdir_p) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(DATA)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(dictdir)"; do \
|
||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-dictDATA
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-dictDATA uninstall-info-am
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic distclean \
|
||||
distclean-generic distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am \
|
||||
install-dictDATA install-exec install-exec-am install-info \
|
||||
install-info-am install-man install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
|
||||
pdf-am ps ps-am uninstall uninstall-am uninstall-dictDATA \
|
||||
uninstall-info-am
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
1490
spacy/it/data/wordnet/adj.exc
Normal file
1490
spacy/it/data/wordnet/adj.exc
Normal file
File diff suppressed because it is too large
Load Diff
7
spacy/it/data/wordnet/adv.exc
Normal file
7
spacy/it/data/wordnet/adv.exc
Normal file
|
@ -0,0 +1,7 @@
|
|||
best well
|
||||
better well
|
||||
deeper deeply
|
||||
farther far
|
||||
further far
|
||||
harder hard
|
||||
hardest hard
|
37387
spacy/it/data/wordnet/cntlist
Normal file
37387
spacy/it/data/wordnet/cntlist
Normal file
File diff suppressed because it is too large
Load Diff
37387
spacy/it/data/wordnet/cntlist.rev
Normal file
37387
spacy/it/data/wordnet/cntlist.rev
Normal file
File diff suppressed because it is too large
Load Diff
18185
spacy/it/data/wordnet/data.adj
Normal file
18185
spacy/it/data/wordnet/data.adj
Normal file
File diff suppressed because it is too large
Load Diff
3650
spacy/it/data/wordnet/data.adv
Normal file
3650
spacy/it/data/wordnet/data.adv
Normal file
File diff suppressed because it is too large
Load Diff
82144
spacy/it/data/wordnet/data.noun
Normal file
82144
spacy/it/data/wordnet/data.noun
Normal file
File diff suppressed because one or more lines are too long
13796
spacy/it/data/wordnet/data.verb
Normal file
13796
spacy/it/data/wordnet/data.verb
Normal file
File diff suppressed because one or more lines are too long
35
spacy/it/data/wordnet/frames.vrb
Normal file
35
spacy/it/data/wordnet/frames.vrb
Normal file
|
@ -0,0 +1,35 @@
|
|||
1 Something ----s
|
||||
2 Somebody ----s
|
||||
3 It is ----ing
|
||||
4 Something is ----ing PP
|
||||
5 Something ----s something Adjective/Noun
|
||||
6 Something ----s Adjective/Noun
|
||||
7 Somebody ----s Adjective
|
||||
8 Somebody ----s something
|
||||
9 Somebody ----s somebody
|
||||
10 Something ----s somebody
|
||||
11 Something ----s something
|
||||
12 Something ----s to somebody
|
||||
13 Somebody ----s on something
|
||||
14 Somebody ----s somebody something
|
||||
15 Somebody ----s something to somebody
|
||||
16 Somebody ----s something from somebody
|
||||
17 Somebody ----s somebody with something
|
||||
18 Somebody ----s somebody of something
|
||||
19 Somebody ----s something on somebody
|
||||
20 Somebody ----s somebody PP
|
||||
21 Somebody ----s something PP
|
||||
22 Somebody ----s PP
|
||||
23 Somebody's (body part) ----s
|
||||
24 Somebody ----s somebody to INFINITIVE
|
||||
25 Somebody ----s somebody INFINITIVE
|
||||
26 Somebody ----s that CLAUSE
|
||||
27 Somebody ----s to somebody
|
||||
28 Somebody ----s to INFINITIVE
|
||||
29 Somebody ----s whether INFINITIVE
|
||||
30 Somebody ----s somebody into V-ing something
|
||||
31 Somebody ----s something with something
|
||||
32 Somebody ----s INFINITIVE
|
||||
33 Somebody ----s VERB-ing
|
||||
34 It ----s that CLAUSE
|
||||
35 Something ----s INFINITIVE
|
21508
spacy/it/data/wordnet/index.adj
Normal file
21508
spacy/it/data/wordnet/index.adj
Normal file
File diff suppressed because it is too large
Load Diff
4510
spacy/it/data/wordnet/index.adv
Normal file
4510
spacy/it/data/wordnet/index.adv
Normal file
File diff suppressed because it is too large
Load Diff
117827
spacy/it/data/wordnet/index.noun
Normal file
117827
spacy/it/data/wordnet/index.noun
Normal file
File diff suppressed because it is too large
Load Diff
206941
spacy/it/data/wordnet/index.sense
Normal file
206941
spacy/it/data/wordnet/index.sense
Normal file
File diff suppressed because it is too large
Load Diff
11558
spacy/it/data/wordnet/index.verb
Normal file
11558
spacy/it/data/wordnet/index.verb
Normal file
File diff suppressed because it is too large
Load Diff
45
spacy/it/data/wordnet/lexnames
Normal file
45
spacy/it/data/wordnet/lexnames
Normal file
|
@ -0,0 +1,45 @@
|
|||
00 adj.all 3
|
||||
01 adj.pert 3
|
||||
02 adv.all 4
|
||||
03 noun.Tops 1
|
||||
04 noun.act 1
|
||||
05 noun.animal 1
|
||||
06 noun.artifact 1
|
||||
07 noun.attribute 1
|
||||
08 noun.body 1
|
||||
09 noun.cognition 1
|
||||
10 noun.communication 1
|
||||
11 noun.event 1
|
||||
12 noun.feeling 1
|
||||
13 noun.food 1
|
||||
14 noun.group 1
|
||||
15 noun.location 1
|
||||
16 noun.motive 1
|
||||
17 noun.object 1
|
||||
18 noun.person 1
|
||||
19 noun.phenomenon 1
|
||||
20 noun.plant 1
|
||||
21 noun.possession 1
|
||||
22 noun.process 1
|
||||
23 noun.quantity 1
|
||||
24 noun.relation 1
|
||||
25 noun.shape 1
|
||||
26 noun.state 1
|
||||
27 noun.substance 1
|
||||
28 noun.time 1
|
||||
29 verb.body 2
|
||||
30 verb.change 2
|
||||
31 verb.cognition 2
|
||||
32 verb.communication 2
|
||||
33 verb.competition 2
|
||||
34 verb.consumption 2
|
||||
35 verb.contact 2
|
||||
36 verb.creation 2
|
||||
37 verb.emotion 2
|
||||
38 verb.motion 2
|
||||
39 verb.perception 2
|
||||
40 verb.possession 2
|
||||
41 verb.social 2
|
||||
42 verb.stative 2
|
||||
43 verb.weather 2
|
||||
44 adj.ppl 3
|
89
spacy/it/data/wordnet/log.grind.3.0
Normal file
89
spacy/it/data/wordnet/log.grind.3.0
Normal file
|
@ -0,0 +1,89 @@
|
|||
Processing adj.all...
|
||||
Processing adj.pert...
|
||||
Processing adv.all...
|
||||
Processing noun.Tops...
|
||||
noun.Tops, line 7: warning: No hypernyms in synset
|
||||
Processing noun.act...
|
||||
Processing noun.animal...
|
||||
Processing noun.artifact...
|
||||
Processing noun.attribute...
|
||||
Processing noun.body...
|
||||
Processing noun.cognition...
|
||||
Processing noun.communication...
|
||||
Processing noun.event...
|
||||
Processing noun.feeling...
|
||||
Processing noun.food...
|
||||
Processing noun.group...
|
||||
Processing noun.location...
|
||||
Processing noun.motive...
|
||||
Processing noun.object...
|
||||
Processing noun.person...
|
||||
Processing noun.phenomenon...
|
||||
Processing noun.plant...
|
||||
Processing noun.possession...
|
||||
Processing noun.process...
|
||||
Processing noun.quantity...
|
||||
Processing noun.relation...
|
||||
Processing noun.shape...
|
||||
Processing noun.state...
|
||||
Processing noun.substance...
|
||||
Processing noun.time...
|
||||
Processing verb.body...
|
||||
Processing verb.change...
|
||||
Processing verb.cognition...
|
||||
Processing verb.communication...
|
||||
Processing verb.competition...
|
||||
Processing verb.consumption...
|
||||
Processing verb.contact...
|
||||
Processing verb.creation...
|
||||
Processing verb.emotion...
|
||||
Processing verb.motion...
|
||||
Processing verb.perception...
|
||||
Processing verb.possession...
|
||||
Processing verb.social...
|
||||
Processing verb.stative...
|
||||
Processing verb.weather...
|
||||
Processing adj.ppl...
|
||||
|
||||
*** Statistics for ground files:
|
||||
|
||||
82115 noun synsets
|
||||
13767 verb synsets
|
||||
3812 adj synsets
|
||||
3621 adv synsets
|
||||
3651 pertainym synsets
|
||||
10693 adjective satellite synsets
|
||||
117659 synsets in total (including satellite and pertainym synsets)
|
||||
82115 noun synsets have definitional glosses
|
||||
13767 verb synsets have definitional glosses
|
||||
3812 adj synsets have definitional glosses
|
||||
3621 adv synsets have definitional glosses
|
||||
3651 pertainym synsets have definitional glosses
|
||||
10693 adjective satellite synsets have definitional glosses
|
||||
117659 definitional glosses in total (including adjective satellite synsets)
|
||||
225000 pointers in total
|
||||
206978 synonyms in synsets
|
||||
147306 unique word phrases
|
||||
83118 word phrases of length 1
|
||||
54533 word phrases of length 2
|
||||
7766 word phrases of length 3
|
||||
1454 word phrases of length 4
|
||||
298 word phrases of length 5
|
||||
80 word phrases of length 6
|
||||
28 word phrases of length 7
|
||||
20 word phrases of length 8
|
||||
9 word phrases of length 9
|
||||
|
||||
Resolving pointers...
|
||||
Done resolving pointers...
|
||||
Getting sense counts...
|
||||
Done with sense counts...
|
||||
Figuring out byte offsets...
|
||||
Dumping data files...
|
||||
Done dumping data files...
|
||||
Cannot open file: cntlist
|
||||
Cannot order senses
|
||||
Dumping index files...
|
||||
Done dumping index files...
|
||||
Dumping sense index...
|
||||
Done dumping sense index...
|
2054
spacy/it/data/wordnet/noun.exc
Normal file
2054
spacy/it/data/wordnet/noun.exc
Normal file
File diff suppressed because it is too large
Load Diff
3421
spacy/it/data/wordnet/sentidx.vrb
Normal file
3421
spacy/it/data/wordnet/sentidx.vrb
Normal file
File diff suppressed because it is too large
Load Diff
170
spacy/it/data/wordnet/sents.vrb
Normal file
170
spacy/it/data/wordnet/sents.vrb
Normal file
|
@ -0,0 +1,170 @@
|
|||
1 The children %s to the playground
|
||||
10 The cars %s down the avenue
|
||||
100 These glasses %s easily
|
||||
101 These fabrics %s easily
|
||||
102 They %s their earnings this year
|
||||
103 Their earnings %s this year
|
||||
104 The water %ss
|
||||
105 They %s the water
|
||||
106 The animals %s
|
||||
107 They %s a long time
|
||||
108 The car %ss the tree
|
||||
109 John will %s angry
|
||||
11 They %s the car down the avenue
|
||||
110 They %s in the city
|
||||
111 They won't %s the story
|
||||
112 They %s that there was a traffic accident
|
||||
113 They %s whether there was a traffic accident
|
||||
114 They %s her vice president
|
||||
115 Did he %s his major works over a short period of time?
|
||||
116 The chefs %s the vegetables
|
||||
117 They %s the cape
|
||||
118 The food does %s good
|
||||
119 The music does %s good
|
||||
12 They %s the glass tubes
|
||||
120 The cool air does %s good
|
||||
121 This food does %s well
|
||||
122 It was %sing all day long
|
||||
123 They %s him to write the letter
|
||||
124 They %s him into writing the letter
|
||||
125 They %s him from writing the letter
|
||||
126 The bad news will %s him
|
||||
127 The good news will %s her
|
||||
128 The chef wants to %s the eggs
|
||||
129 Sam wants to %s with Sue
|
||||
13 The glass tubes %s
|
||||
130 The fighter managed to %s his opponent
|
||||
131 These cars won't %s
|
||||
132 The branches %s from the trees
|
||||
133 The stock market is going to %s
|
||||
134 The moon will soon %s
|
||||
135 The business is going to %s
|
||||
136 The airplane is sure to %s
|
||||
137 They %s to move
|
||||
138 They %s moving
|
||||
139 Sam and Sue %s the movie
|
||||
14 Sam and Sue %s
|
||||
140 They want to %s the prisoners
|
||||
141 They want to %s the doors
|
||||
142 The doors %s
|
||||
143 Did he %s his foot?
|
||||
144 Did his feet %s?
|
||||
145 They will %s the duet
|
||||
146 They %s their hair
|
||||
147 They %s the trees
|
||||
148 They %s him of all his money
|
||||
149 Lights %s on the horizon
|
||||
15 Sam cannot %s Sue
|
||||
150 The horizon is %sing with lights
|
||||
151 The crowds %s in the streets
|
||||
152 The streets %s with crowds
|
||||
153 Cars %s in the streets
|
||||
154 The streets %s with cars
|
||||
155 You can hear animals %s in the meadows
|
||||
156 The meadows %s with animals
|
||||
157 The birds %s in the woods
|
||||
158 The woods %s with many kinds of birds
|
||||
159 The performance is likely to %s Sue
|
||||
16 The ropes %s
|
||||
160 Sam and Sue %s over the results of the experiment
|
||||
161 In the summer they like to go out and %s
|
||||
162 The children %s in the rocking chair
|
||||
163 There %s some children in the rocking chair
|
||||
164 Some big birds %s in the tree
|
||||
165 There %s some big birds in the tree
|
||||
166 The men %s the area for animals
|
||||
167 The men %s for animals in the area
|
||||
168 The customs agents %s the bags for drugs
|
||||
169 They %s him as chairman
|
||||
17 The strong winds %s the rope
|
||||
170 They %s him "Bobby"
|
||||
18 They %s the sheets
|
||||
19 The sheets didn't %s
|
||||
2 The banks %s the check
|
||||
20 The horses %s across the field
|
||||
21 They %s the bags on the table
|
||||
22 The men %s the horses across the field
|
||||
23 Our properties %s at this point
|
||||
24 His fields %s mine at this point
|
||||
25 They %s the hill
|
||||
26 They %s up the hill
|
||||
27 They %s the river
|
||||
28 They %s down the river
|
||||
29 They %s the countryside
|
||||
3 The checks %s
|
||||
30 They %s in the countryside
|
||||
31 These men %s across the river
|
||||
32 These men %s the river
|
||||
33 They %s the food to the people
|
||||
34 They %s the people the food
|
||||
35 They %s more bread
|
||||
36 They %s the object in the water
|
||||
37 The men %s the bookshelves
|
||||
38 They %s the money in the closet
|
||||
39 The lights %s from the ceiling
|
||||
4 The children %s the ball
|
||||
40 They %s the lights from the ceiling
|
||||
41 They %s their rifles on the cabinet
|
||||
42 The chairs %s in the corner
|
||||
43 The men %s the chairs
|
||||
44 The women %s water into the bowl
|
||||
45 Water and oil %s into the bowl
|
||||
46 They %s the wire around the stick
|
||||
47 The wires %s around the stick
|
||||
48 They %s the bread with melted butter
|
||||
49 They %s the cart with boxes
|
||||
5 The balls %s
|
||||
50 They %s the books into the box
|
||||
51 They %s sugar over the cake
|
||||
52 They %s the cake with sugar
|
||||
53 They %s the fruit with a chemical
|
||||
54 They %s a chemical into the fruit
|
||||
55 They %s the field with rye
|
||||
56 They %s rye in the field
|
||||
57 They %s notices on the doors
|
||||
58 They %s the doors with notices
|
||||
59 They %s money on their grandchild
|
||||
6 The girls %s the wooden sticks
|
||||
60 They %s their grandchild with money
|
||||
61 They %s coins on the image
|
||||
62 They %s the image with coins
|
||||
63 They %s butter on the bread
|
||||
64 They %s the lake with fish
|
||||
65 The children %s the paper with grease
|
||||
66 The children %s grease onto the paper
|
||||
67 They %s papers over the floor
|
||||
68 They %s the floor with papers
|
||||
69 They %s the money
|
||||
7 The wooden sticks %s
|
||||
70 They %s the newspapers
|
||||
71 They %s the goods
|
||||
72 The men %s the boat
|
||||
73 They %s the animals
|
||||
74 The books %s the box
|
||||
75 They %s the halls with holly
|
||||
76 Holly flowers %s the halls
|
||||
77 The wind storms %s the area with dust and dirt
|
||||
78 Dust and dirt %s the area
|
||||
79 The swollen rivers %s the area with water
|
||||
8 The coins %s
|
||||
80 The waters %s the area
|
||||
81 They %s the cloth with water and alcohol
|
||||
82 Water and alcohol %s the cloth
|
||||
83 They %s the snow from the path
|
||||
84 They %s the path of the snow
|
||||
85 They %s the water from the sink
|
||||
86 They %s the sink of water
|
||||
87 They %s the parcel to their parents
|
||||
88 They %s them the parcel
|
||||
89 They %s cars to the tourists
|
||||
9 They %s the coin
|
||||
90 They %s the tourists their cars
|
||||
91 They %s the money to them
|
||||
92 They %s them the money
|
||||
93 They %s them the information
|
||||
94 They %s the information to them
|
||||
95 The parents %s a French poem to the children
|
||||
96 The parents %s the children a French poem
|
||||
97 They %s
|
||||
98 They %s themselves
|
||||
99 These balls %s easily
|
35
spacy/it/data/wordnet/verb.Framestext
Normal file
35
spacy/it/data/wordnet/verb.Framestext
Normal file
|
@ -0,0 +1,35 @@
|
|||
1 Something ----s
|
||||
2 Somebody ----s
|
||||
3 It is ----ing
|
||||
4 Something is ----ing PP
|
||||
5 Something ----s something Adjective/Noun
|
||||
6 Something ----s Adjective/Noun
|
||||
7 Somebody ----s Adjective
|
||||
8 Somebody ----s something
|
||||
9 Somebody ----s somebody
|
||||
10 Something ----s somebody
|
||||
11 Something ----s something
|
||||
12 Something ----s to somebody
|
||||
13 Somebody ----s on something
|
||||
14 Somebody ----s somebody something
|
||||
15 Somebody ----s something to somebody
|
||||
16 Somebody ----s something from somebody
|
||||
17 Somebody ----s somebody with something
|
||||
18 Somebody ----s somebody of something
|
||||
19 Somebody ----s something on somebody
|
||||
20 Somebody ----s somebody PP
|
||||
21 Somebody ----s something PP
|
||||
22 Somebody ----s PP
|
||||
23 Somebody's (body part) ----s
|
||||
24 Somebody ----s somebody to INFINITIVE
|
||||
25 Somebody ----s somebody INFINITIVE
|
||||
26 Somebody ----s that CLAUSE
|
||||
27 Somebody ----s to somebody
|
||||
28 Somebody ----s to INFINITIVE
|
||||
29 Somebody ----s whether INFINITIVE
|
||||
30 Somebody ----s somebody into V-ing something
|
||||
31 Somebody ----s something with something
|
||||
32 Somebody ----s INFINITIVE
|
||||
33 Somebody ----s VERB-ing
|
||||
34 It ----s that CLAUSE
|
||||
35 Something ----s INFINITIVE
|
2401
spacy/it/data/wordnet/verb.exc
Normal file
2401
spacy/it/data/wordnet/verb.exc
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user