capreolus.extractor.embedtext

Module Contents

Classes

EmbedText Base class for Extractor modules. The purpose of an Extractor is to convert queries and documents to a representation suitable for use with a Reranker module.
capreolus.extractor.embedtext.logger[source]
class capreolus.extractor.embedtext.EmbedText(config=None, provide=None, share_dependency_objects=False, build=True)[source]

Bases: capreolus.extractor.Extractor

Base class for Extractor modules. The purpose of an Extractor is to convert queries and documents to a representation suitable for use with a Reranker module.

Modules should provide:
  • an id2vec(qid, posid, negid=None) method that converts the given query and document ids to an appropriate representation
module_name = embedtext[source]
requires_random_seed = True[source]
dependencies[source]
config_spec[source]
pad_tok = <pad>[source]
build(self)[source]
get_tf_feature_description(self)[source]
create_tf_feature(self, sample)[source]

sample - output from self.id2vec() return - a tensorflow feature

parse_tf_example(self, example_proto)[source]
preprocess(self, qids, docids, topics)[source]
get_doc_tokens(self, docid)[source]
id2vec(self, qid, posid, negid=None, **kwargs)[source]

Creates a feature from the (qid, docid) pair. If negdocid is supplied, that’s also included in the feature (needed for training with pairwise hinge loss) Label is a vector of shape [num_classes], and is supplied only when using pointwise training (i.e cross entropy) When using pointwise samples, negdocid is None, and label is either [0, 1] or [1, 0] depending on whether the document represented by posdocid is relevant or irrelevant respectively.