Add binder class for document serialization

This commit is contained in:
Matthew Honnibal 2017-05-09 17:21:00 +02:00
parent a0b00624bb
commit 62ecdea9f2

21
spacy/tokens/binder.pyx Normal file
View File

@ -0,0 +1,21 @@
cdef class Binder:
def __init__(self, *docs):
pass
def __iter__(self):
pass
def __reduce__(self):
pass
def to_bytes(self):
pass
def from_bytes(cls, data):
pass
def to_disk(self):
pass
def from_disk(self, path):
pass