-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f2554a
commit 70c3762
Showing
12 changed files
with
7,573 additions
and
5,693 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,5 +1,12 @@ | ||
cdef class Datum: | ||
|
||
cdef public str utterance | ||
cdef public list intents | ||
cdef public list entities | ||
cdef public object intents | ||
cdef public object entities | ||
|
||
cpdef bint has_same_utterance_as(self, Datum other) | ||
cpdef bint has_same_intents_as(self, Datum other) | ||
cpdef bint has_same_entities_as(self, Datum other) | ||
cpdef bint has_entities(self) | ||
cpdef bint has_intents(self) | ||
cpdef list copy_intents(self) |
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.