Skip to content

Commit

Permalink
Deprecate participle as part of speech
Browse files Browse the repository at this point in the history
The morph retriever returns verb now for all participles. We remove it
as a distinct part of speech category in our morph conf files.

Breaks backwards compatibility. We will have to fix the old treebank
data with this. The introduction of the new schema might be a good
opportunity to do this.
  • Loading branch information
LFDM committed Jul 4, 2014
1 parent eb88f60 commit 1508d80
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
2 changes: 1 addition & 1 deletion app/js/arethusa.morph/bsp_morph_retriever.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ angular.module('arethusa.morph').factory('BspMorphRetriever', [
renameValues(form, {
'pos': [
'verb\nparticiple',
'participle'
'verb'
]
});
results.push({
Expand Down
8 changes: 0 additions & 8 deletions app/static/configs/morph/gr_attributes.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,6 @@
"color" : "darkorange"
}
},
"part" : {
"long" : "participle",
"short" : "part",
"postag" : "t",
"style" : {
"color" : "darkred"
}
},
"conj" : {
"long" : "conjunction",
"short" : "conj",
Expand Down
8 changes: 0 additions & 8 deletions app/static/configs/morph/lat_attributes.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,6 @@
"color" : "darkorange"
}
},
"part" : {
"long" : "participle",
"short" : "part",
"postag" : "t",
"style" : {
"color" : "darkred"
}
},
"conj" : {
"long" : "conjunction",
"short" : "conj",
Expand Down

0 comments on commit 1508d80

Please sign in to comment.