-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #594 from deeppavlov/dev
Release v1.12.0
- Loading branch information
Showing
275 changed files
with
12,427 additions
and
262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,23 @@ | ||
# BadlistedWordsDetector | ||
# BadlistedWordsDetector for Russian | ||
|
||
## Description | ||
|
||
Spacy-based user utterance annotator that detects words and phrases from the badlist. This version of the annotator works for the Russian Language. | ||
Spacy-based user utterance annotator that detects words and phrases from the badlist. | ||
|
||
This version of the annotator works for the Russian Language. | ||
|
||
## I/O | ||
input: user input as a str, lang = ru | ||
output: json dict | ||
**Input:** | ||
Takes a list of user's utterances | ||
``` | ||
["не пизди.", "застрахуйте уже его", "пошел нахер!"] | ||
``` | ||
|
||
**Output:** | ||
Returns words and their tags | ||
``` | ||
[{"bad_words": True}, {"bad_words": False}, {"bad_words": True}] | ||
``` | ||
|
||
## Dependencies | ||
none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Conversation Evaluator | ||
|
||
## Description | ||
This annotator is trained on the Alexa Prize data from the previous competitions and predicts whether the candidate response is interesting, comprehensible, on-topic, engaging, or erroneous. | ||
|
||
## Input/Output | ||
|
||
**Input** | ||
- possible assistant's replies | ||
- user's past responses | ||
**Output** | ||
tags | ||
- `isResponseComprehensible` | ||
- `isResponseErroneous` | ||
- `isResponseInteresting` | ||
- `isResponseOnTopic` | ||
- `responseEngagesUser` | ||
|
||
with their probabilities | ||
|
||
## Dependencies | ||
none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
BERT Base model for emotion classification which learned at the custom dataset(described more precisely in our article) | ||
# DeepPavlov Emotion Classification Annotator | ||
|
||
## Description | ||
|
||
BERT Base model for emotion classification | ||
|
||
## I/O | ||
|
||
**Input** | ||
|
||
**Output:** | ||
|
||
|
||
## Dependencies | ||
none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Title | ||
## Description | ||
|
||
## Input/Output | ||
|
||
**Input** | ||
**Output** | ||
|
||
## Dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Title | ||
Named Entity Recognition Annotator | ||
|
||
## Description | ||
Extracts people names, locations and names of organizations from an uncased text | ||
|
||
## Input/Output | ||
|
||
**Input** | ||
A list of user utterances | ||
``` | ||
["john peterson is my brother.", "he lives in New York."] | ||
``` | ||
|
||
|
||
**Output** | ||
A user utterance annotated by | ||
- confidence level | ||
- named entity's position in a sentence (`start_pos` and `end_pos`) | ||
- the named the entity itself | ||
- the named entity type | ||
|
||
``` | ||
[{"confidence": 1, "end_pos": 5, "start_pos": 3, "text": "New York", "type": "LOC"}], | ||
``` | ||
|
||
## Dependencies | ||
none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Title | ||
## Description | ||
|
||
## Input/Output | ||
|
||
**Input** | ||
**Output** | ||
|
||
## Dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Title | ||
## Description | ||
|
||
## Input/Output | ||
|
||
**Input** | ||
**Output** | ||
|
||
## Dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Title | ||
## Description | ||
|
||
## Input/Output | ||
|
||
**Input** | ||
**Output** | ||
|
||
## Dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.