LabeledSentence is not being imported from gensim.models.doc2vec.
from gensim.models.doc2vec import LabeledSentence
the error I am getting is
cannot import name 'LabeledSentence'
@thepurpleowl hello, thanks for the report, right now you can use
from gensim.models.deprecated.doc2vec import LabeledSentence (FYI this is deprecated stuff),
or better use
from gensim.models.doc2vec import TaggedDocument
CC: @manneshiva
Most helpful comment
@thepurpleowl hello, thanks for the report, right now you can use
from gensim.models.deprecated.doc2vec import LabeledSentence(FYI this is deprecated stuff),or better use
from gensim.models.doc2vec import TaggedDocumentCC: @manneshiva