repo
stringclasses
85 values
path
stringlengths
8
121
func_name
stringlengths
1
82
original_string
stringlengths
112
65.5k
language
stringclasses
1 value
code
stringlengths
112
65.5k
code_tokens
listlengths
20
4.09k
docstring
stringlengths
3
46.3k
docstring_tokens
listlengths
1
564
sha
stringclasses
85 values
url
stringlengths
93
218
partition
stringclasses
1 value
dmlc/gluon-nlp
src/gluonnlp/model/language_model.py
standard_lstm_lm_200
def standard_lstm_lm_200(dataset_name=None, vocab=None, pretrained=False, ctx=cpu(), root=os.path.join(get_home_dir(), 'models'), **kwargs): r"""Standard 2-layer LSTM language model with tied embedding and output weights. Both embedding and hidden dimensions are 200. Parameters ...
python
def standard_lstm_lm_200(dataset_name=None, vocab=None, pretrained=False, ctx=cpu(), root=os.path.join(get_home_dir(), 'models'), **kwargs): r"""Standard 2-layer LSTM language model with tied embedding and output weights. Both embedding and hidden dimensions are 200. Parameters ...
[ "def", "standard_lstm_lm_200", "(", "dataset_name", "=", "None", ",", "vocab", "=", "None", ",", "pretrained", "=", "False", ",", "ctx", "=", "cpu", "(", ")", ",", "root", "=", "os", ".", "path", ".", "join", "(", "get_home_dir", "(", ")", ",", "'mod...
r"""Standard 2-layer LSTM language model with tied embedding and output weights. Both embedding and hidden dimensions are 200. Parameters ---------- dataset_name : str or None, default None The dataset name on which the pre-trained model is trained. Options are 'wikitext-2'. If specifi...
[ "r", "Standard", "2", "-", "layer", "LSTM", "language", "model", "with", "tied", "embedding", "and", "output", "weights", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/language_model.py#L276-L317
train
dmlc/gluon-nlp
src/gluonnlp/model/language_model.py
big_rnn_lm_2048_512
def big_rnn_lm_2048_512(dataset_name=None, vocab=None, pretrained=False, ctx=cpu(), root=os.path.join(get_home_dir(), 'models'), **kwargs): r"""Big 1-layer LSTMP language model. Both embedding and projection size are 512. Hidden size is 2048. Parameters ---------- dataset_n...
python
def big_rnn_lm_2048_512(dataset_name=None, vocab=None, pretrained=False, ctx=cpu(), root=os.path.join(get_home_dir(), 'models'), **kwargs): r"""Big 1-layer LSTMP language model. Both embedding and projection size are 512. Hidden size is 2048. Parameters ---------- dataset_n...
[ "def", "big_rnn_lm_2048_512", "(", "dataset_name", "=", "None", ",", "vocab", "=", "None", ",", "pretrained", "=", "False", ",", "ctx", "=", "cpu", "(", ")", ",", "root", "=", "os", ".", "path", ".", "join", "(", "get_home_dir", "(", ")", ",", "'mode...
r"""Big 1-layer LSTMP language model. Both embedding and projection size are 512. Hidden size is 2048. Parameters ---------- dataset_name : str or None, default None The dataset name on which the pre-trained model is trained. Options are 'gbw'. If specified, then the returned vocabular...
[ "r", "Big", "1", "-", "layer", "LSTMP", "language", "model", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/language_model.py#L512-L553
train
dmlc/gluon-nlp
src/gluonnlp/model/language_model.py
AWDRNN.forward
def forward(self, inputs, begin_state=None): # pylint: disable=arguments-differ """Implement forward computation. Parameters ----------- inputs : NDArray input tensor with shape `(sequence_length, batch_size)` when `layout` is "TNC". begin_state : list ...
python
def forward(self, inputs, begin_state=None): # pylint: disable=arguments-differ """Implement forward computation. Parameters ----------- inputs : NDArray input tensor with shape `(sequence_length, batch_size)` when `layout` is "TNC". begin_state : list ...
[ "def", "forward", "(", "self", ",", "inputs", ",", "begin_state", "=", "None", ")", ":", "# pylint: disable=arguments-differ", "encoded", "=", "self", ".", "embedding", "(", "inputs", ")", "if", "begin_state", "is", "None", ":", "begin_state", "=", "self", "...
Implement forward computation. Parameters ----------- inputs : NDArray input tensor with shape `(sequence_length, batch_size)` when `layout` is "TNC". begin_state : list initial recurrent state tensor with length equals to num_layers. the ...
[ "Implement", "forward", "computation", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/language_model.py#L74-L108
train
dmlc/gluon-nlp
src/gluonnlp/model/language_model.py
BigRNN.forward
def forward(self, inputs, begin_state): # pylint: disable=arguments-differ """Implement forward computation. Parameters ----------- inputs : NDArray input tensor with shape `(sequence_length, batch_size)` when `layout` is "TNC". begin_state : list ...
python
def forward(self, inputs, begin_state): # pylint: disable=arguments-differ """Implement forward computation. Parameters ----------- inputs : NDArray input tensor with shape `(sequence_length, batch_size)` when `layout` is "TNC". begin_state : list ...
[ "def", "forward", "(", "self", ",", "inputs", ",", "begin_state", ")", ":", "# pylint: disable=arguments-differ", "encoded", "=", "self", ".", "embedding", "(", "inputs", ")", "length", "=", "inputs", ".", "shape", "[", "0", "]", "batch_size", "=", "inputs",...
Implement forward computation. Parameters ----------- inputs : NDArray input tensor with shape `(sequence_length, batch_size)` when `layout` is "TNC". begin_state : list initial recurrent state tensor with length equals to num_layers*2. Fo...
[ "Implement", "forward", "computation", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/language_model.py#L479-L510
train
dmlc/gluon-nlp
src/gluonnlp/model/seq2seq_encoder_decoder.py
_get_cell_type
def _get_cell_type(cell_type): """Get the object type of the cell by parsing the input Parameters ---------- cell_type : str or type Returns ------- cell_constructor: type The constructor of the RNNCell """ if isinstance(cell_type, str): if cell_type == 'lstm': ...
python
def _get_cell_type(cell_type): """Get the object type of the cell by parsing the input Parameters ---------- cell_type : str or type Returns ------- cell_constructor: type The constructor of the RNNCell """ if isinstance(cell_type, str): if cell_type == 'lstm': ...
[ "def", "_get_cell_type", "(", "cell_type", ")", ":", "if", "isinstance", "(", "cell_type", ",", "str", ")", ":", "if", "cell_type", "==", "'lstm'", ":", "return", "rnn", ".", "LSTMCell", "elif", "cell_type", "==", "'gru'", ":", "return", "rnn", ".", "GRU...
Get the object type of the cell by parsing the input Parameters ---------- cell_type : str or type Returns ------- cell_constructor: type The constructor of the RNNCell
[ "Get", "the", "object", "type", "of", "the", "cell", "by", "parsing", "the", "input" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/seq2seq_encoder_decoder.py#L30-L54
train
dmlc/gluon-nlp
src/gluonnlp/data/batchify/embedding.py
_get_context
def _get_context(center_idx, sentence_boundaries, window_size, random_window_size, seed): """Compute the context with respect to a center word in a sentence. Takes an numpy array of sentences boundaries. """ random.seed(seed + center_idx) sentence_index = np.searchsorted(sentence...
python
def _get_context(center_idx, sentence_boundaries, window_size, random_window_size, seed): """Compute the context with respect to a center word in a sentence. Takes an numpy array of sentences boundaries. """ random.seed(seed + center_idx) sentence_index = np.searchsorted(sentence...
[ "def", "_get_context", "(", "center_idx", ",", "sentence_boundaries", ",", "window_size", ",", "random_window_size", ",", "seed", ")", ":", "random", ".", "seed", "(", "seed", "+", "center_idx", ")", "sentence_index", "=", "np", ".", "searchsorted", "(", "sent...
Compute the context with respect to a center word in a sentence. Takes an numpy array of sentences boundaries.
[ "Compute", "the", "context", "with", "respect", "to", "a", "center", "word", "in", "a", "sentence", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/batchify/embedding.py#L246-L274
train
dmlc/gluon-nlp
scripts/sentiment_analysis/text_cnn.py
model
def model(dropout, vocab, model_mode, output_size): """Construct the model.""" textCNN = SentimentNet(dropout=dropout, vocab_size=len(vocab), model_mode=model_mode,\ output_size=output_size) textCNN.hybridize() return textCNN
python
def model(dropout, vocab, model_mode, output_size): """Construct the model.""" textCNN = SentimentNet(dropout=dropout, vocab_size=len(vocab), model_mode=model_mode,\ output_size=output_size) textCNN.hybridize() return textCNN
[ "def", "model", "(", "dropout", ",", "vocab", ",", "model_mode", ",", "output_size", ")", ":", "textCNN", "=", "SentimentNet", "(", "dropout", "=", "dropout", ",", "vocab_size", "=", "len", "(", "vocab", ")", ",", "model_mode", "=", "model_mode", ",", "o...
Construct the model.
[ "Construct", "the", "model", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/sentiment_analysis/text_cnn.py#L40-L46
train
dmlc/gluon-nlp
scripts/sentiment_analysis/text_cnn.py
init
def init(textCNN, vocab, model_mode, context, lr): """Initialize parameters.""" textCNN.initialize(mx.init.Xavier(), ctx=context, force_reinit=True) if model_mode != 'rand': textCNN.embedding.weight.set_data(vocab.embedding.idx_to_vec) if model_mode == 'multichannel': textCNN.embedding_...
python
def init(textCNN, vocab, model_mode, context, lr): """Initialize parameters.""" textCNN.initialize(mx.init.Xavier(), ctx=context, force_reinit=True) if model_mode != 'rand': textCNN.embedding.weight.set_data(vocab.embedding.idx_to_vec) if model_mode == 'multichannel': textCNN.embedding_...
[ "def", "init", "(", "textCNN", ",", "vocab", ",", "model_mode", ",", "context", ",", "lr", ")", ":", "textCNN", ".", "initialize", "(", "mx", ".", "init", ".", "Xavier", "(", ")", ",", "ctx", "=", "context", ",", "force_reinit", "=", "True", ")", "...
Initialize parameters.
[ "Initialize", "parameters", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/sentiment_analysis/text_cnn.py#L48-L60
train
dmlc/gluon-nlp
scripts/bert/bert_qa_dataset.py
preprocess_dataset
def preprocess_dataset(dataset, transform, num_workers=8): """Use multiprocessing to perform transform for dataset. Parameters ---------- dataset: dataset-like object Source dataset. transform: callable Transformer function. num_workers: int, default 8 The number of mult...
python
def preprocess_dataset(dataset, transform, num_workers=8): """Use multiprocessing to perform transform for dataset. Parameters ---------- dataset: dataset-like object Source dataset. transform: callable Transformer function. num_workers: int, default 8 The number of mult...
[ "def", "preprocess_dataset", "(", "dataset", ",", "transform", ",", "num_workers", "=", "8", ")", ":", "worker_fn", "=", "partial", "(", "_worker_fn", ",", "transform", "=", "transform", ")", "start", "=", "time", ".", "time", "(", ")", "pool", "=", "mp"...
Use multiprocessing to perform transform for dataset. Parameters ---------- dataset: dataset-like object Source dataset. transform: callable Transformer function. num_workers: int, default 8 The number of multiprocessing workers to use for data preprocessing.
[ "Use", "multiprocessing", "to", "perform", "transform", "for", "dataset", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/bert_qa_dataset.py#L56-L86
train
dmlc/gluon-nlp
src/gluonnlp/model/__init__.py
get_model
def get_model(name, dataset_name='wikitext-2', **kwargs): """Returns a pre-defined model by name. Parameters ---------- name : str Name of the model. dataset_name : str or None, default 'wikitext-2'. The dataset name on which the pre-trained model is trained. For language mo...
python
def get_model(name, dataset_name='wikitext-2', **kwargs): """Returns a pre-defined model by name. Parameters ---------- name : str Name of the model. dataset_name : str or None, default 'wikitext-2'. The dataset name on which the pre-trained model is trained. For language mo...
[ "def", "get_model", "(", "name", ",", "dataset_name", "=", "'wikitext-2'", ",", "*", "*", "kwargs", ")", ":", "models", "=", "{", "'standard_lstm_lm_200'", ":", "standard_lstm_lm_200", ",", "'standard_lstm_lm_650'", ":", "standard_lstm_lm_650", ",", "'standard_lstm_...
Returns a pre-defined model by name. Parameters ---------- name : str Name of the model. dataset_name : str or None, default 'wikitext-2'. The dataset name on which the pre-trained model is trained. For language model, options are 'wikitext-2'. For ELMo, Options are 'gbw...
[ "Returns", "a", "pre", "-", "defined", "model", "by", "name", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/__init__.py#L99-L151
train
dmlc/gluon-nlp
src/gluonnlp/model/attention_cell.py
_masked_softmax
def _masked_softmax(F, att_score, mask, dtype): """Ignore the masked elements when calculating the softmax Parameters ---------- F : symbol or ndarray att_score : Symborl or NDArray Shape (batch_size, query_length, memory_length) mask : Symbol or NDArray or None Shape (batch_siz...
python
def _masked_softmax(F, att_score, mask, dtype): """Ignore the masked elements when calculating the softmax Parameters ---------- F : symbol or ndarray att_score : Symborl or NDArray Shape (batch_size, query_length, memory_length) mask : Symbol or NDArray or None Shape (batch_siz...
[ "def", "_masked_softmax", "(", "F", ",", "att_score", ",", "mask", ",", "dtype", ")", ":", "if", "mask", "is", "not", "None", ":", "# Fill in the masked scores with a very small value", "neg", "=", "-", "1e4", "if", "np", ".", "dtype", "(", "dtype", ")", "...
Ignore the masked elements when calculating the softmax Parameters ---------- F : symbol or ndarray att_score : Symborl or NDArray Shape (batch_size, query_length, memory_length) mask : Symbol or NDArray or None Shape (batch_size, query_length, memory_length) Returns -------...
[ "Ignore", "the", "masked", "elements", "when", "calculating", "the", "softmax" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/attention_cell.py#L33-L55
train
dmlc/gluon-nlp
src/gluonnlp/model/attention_cell.py
AttentionCell._read_by_weight
def _read_by_weight(self, F, att_weights, value): """Read from the value matrix given the attention weights. Parameters ---------- F : symbol or ndarray att_weights : Symbol or NDArray Attention weights. For single-head attention, Shape (b...
python
def _read_by_weight(self, F, att_weights, value): """Read from the value matrix given the attention weights. Parameters ---------- F : symbol or ndarray att_weights : Symbol or NDArray Attention weights. For single-head attention, Shape (b...
[ "def", "_read_by_weight", "(", "self", ",", "F", ",", "att_weights", ",", "value", ")", ":", "output", "=", "F", ".", "batch_dot", "(", "att_weights", ",", "value", ")", "return", "output" ]
Read from the value matrix given the attention weights. Parameters ---------- F : symbol or ndarray att_weights : Symbol or NDArray Attention weights. For single-head attention, Shape (batch_size, query_length, memory_length). For mult...
[ "Read", "from", "the", "value", "matrix", "given", "the", "attention", "weights", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/attention_cell.py#L99-L120
train
dmlc/gluon-nlp
scripts/machine_translation/translation.py
BeamSearchTranslator.translate
def translate(self, src_seq, src_valid_length): """Get the translation result given the input sentence. Parameters ---------- src_seq : mx.nd.NDArray Shape (batch_size, length) src_valid_length : mx.nd.NDArray Shape (batch_size,) Returns ...
python
def translate(self, src_seq, src_valid_length): """Get the translation result given the input sentence. Parameters ---------- src_seq : mx.nd.NDArray Shape (batch_size, length) src_valid_length : mx.nd.NDArray Shape (batch_size,) Returns ...
[ "def", "translate", "(", "self", ",", "src_seq", ",", "src_valid_length", ")", ":", "batch_size", "=", "src_seq", ".", "shape", "[", "0", "]", "encoder_outputs", ",", "_", "=", "self", ".", "_model", ".", "encode", "(", "src_seq", ",", "valid_length", "=...
Get the translation result given the input sentence. Parameters ---------- src_seq : mx.nd.NDArray Shape (batch_size, length) src_valid_length : mx.nd.NDArray Shape (batch_size,) Returns ------- samples : NDArray Samples draw ...
[ "Get", "the", "translation", "result", "given", "the", "input", "sentence", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/machine_translation/translation.py#L55-L82
train
dmlc/gluon-nlp
scripts/parsing/parser/evaluate/evaluate.py
evaluate_official_script
def evaluate_official_script(parser, vocab, num_buckets_test, test_batch_size, test_file, output_file, debug=False): """Evaluate parser on a data set Parameters ---------- parser : BiaffineParser biaffine parser vocab : ParserVocabulary vocabulary built ...
python
def evaluate_official_script(parser, vocab, num_buckets_test, test_batch_size, test_file, output_file, debug=False): """Evaluate parser on a data set Parameters ---------- parser : BiaffineParser biaffine parser vocab : ParserVocabulary vocabulary built ...
[ "def", "evaluate_official_script", "(", "parser", ",", "vocab", ",", "num_buckets_test", ",", "test_batch_size", ",", "test_file", ",", "output_file", ",", "debug", "=", "False", ")", ":", "if", "output_file", "is", "None", ":", "output_file", "=", "tempfile", ...
Evaluate parser on a data set Parameters ---------- parser : BiaffineParser biaffine parser vocab : ParserVocabulary vocabulary built from data set num_buckets_test : int size of buckets (cluster sentences into this number of clusters) test_batch_size : int batch...
[ "Evaluate", "parser", "on", "a", "data", "set" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/parsing/parser/evaluate/evaluate.py#L28-L102
train
dmlc/gluon-nlp
scripts/parsing/parser/biaffine_parser.py
BiaffineParser.parameter_from_numpy
def parameter_from_numpy(self, name, array): """ Create parameter with its value initialized according to a numpy tensor Parameters ---------- name : str parameter name array : np.ndarray initiation value Returns ------- mxnet.glu...
python
def parameter_from_numpy(self, name, array): """ Create parameter with its value initialized according to a numpy tensor Parameters ---------- name : str parameter name array : np.ndarray initiation value Returns ------- mxnet.glu...
[ "def", "parameter_from_numpy", "(", "self", ",", "name", ",", "array", ")", ":", "p", "=", "self", ".", "params", ".", "get", "(", "name", ",", "shape", "=", "array", ".", "shape", ",", "init", "=", "mx", ".", "init", ".", "Constant", "(", "array",...
Create parameter with its value initialized according to a numpy tensor Parameters ---------- name : str parameter name array : np.ndarray initiation value Returns ------- mxnet.gluon.parameter a parameter object
[ "Create", "parameter", "with", "its", "value", "initialized", "according", "to", "a", "numpy", "tensor" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/parsing/parser/biaffine_parser.py#L122-L138
train
dmlc/gluon-nlp
scripts/parsing/parser/biaffine_parser.py
BiaffineParser.parameter_init
def parameter_init(self, name, shape, init): """Create parameter given name, shape and initiator Parameters ---------- name : str parameter name shape : tuple parameter shape init : mxnet.initializer an initializer Returns ...
python
def parameter_init(self, name, shape, init): """Create parameter given name, shape and initiator Parameters ---------- name : str parameter name shape : tuple parameter shape init : mxnet.initializer an initializer Returns ...
[ "def", "parameter_init", "(", "self", ",", "name", ",", "shape", ",", "init", ")", ":", "p", "=", "self", ".", "params", ".", "get", "(", "name", ",", "shape", "=", "shape", ",", "init", "=", "init", ")", "return", "p" ]
Create parameter given name, shape and initiator Parameters ---------- name : str parameter name shape : tuple parameter shape init : mxnet.initializer an initializer Returns ------- mxnet.gluon.parameter a...
[ "Create", "parameter", "given", "name", "shape", "and", "initiator" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/parsing/parser/biaffine_parser.py#L140-L158
train
dmlc/gluon-nlp
scripts/parsing/parser/biaffine_parser.py
BiaffineParser.forward
def forward(self, word_inputs, tag_inputs, arc_targets=None, rel_targets=None): """Run decoding Parameters ---------- word_inputs : mxnet.ndarray.NDArray word indices of seq_len x batch_size tag_inputs : mxnet.ndarray.NDArray tag indices of seq_len x batc...
python
def forward(self, word_inputs, tag_inputs, arc_targets=None, rel_targets=None): """Run decoding Parameters ---------- word_inputs : mxnet.ndarray.NDArray word indices of seq_len x batch_size tag_inputs : mxnet.ndarray.NDArray tag indices of seq_len x batc...
[ "def", "forward", "(", "self", ",", "word_inputs", ",", "tag_inputs", ",", "arc_targets", "=", "None", ",", "rel_targets", "=", "None", ")", ":", "is_train", "=", "autograd", ".", "is_training", "(", ")", "def", "flatten_numpy", "(", "ndarray", ")", ":", ...
Run decoding Parameters ---------- word_inputs : mxnet.ndarray.NDArray word indices of seq_len x batch_size tag_inputs : mxnet.ndarray.NDArray tag indices of seq_len x batch_size arc_targets : mxnet.ndarray.NDArray gold arc indices of seq_len ...
[ "Run", "decoding" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/parsing/parser/biaffine_parser.py#L160-L302
train
dmlc/gluon-nlp
scripts/parsing/parser/biaffine_parser.py
BiaffineParser.save_parameters
def save_parameters(self, filename): """Save model Parameters ---------- filename : str path to model file """ params = self._collect_params_with_prefix() if self.pret_word_embs: # don't save word embeddings inside model params.pop('pret_...
python
def save_parameters(self, filename): """Save model Parameters ---------- filename : str path to model file """ params = self._collect_params_with_prefix() if self.pret_word_embs: # don't save word embeddings inside model params.pop('pret_...
[ "def", "save_parameters", "(", "self", ",", "filename", ")", ":", "params", "=", "self", ".", "_collect_params_with_prefix", "(", ")", "if", "self", ".", "pret_word_embs", ":", "# don't save word embeddings inside model", "params", ".", "pop", "(", "'pret_word_embs....
Save model Parameters ---------- filename : str path to model file
[ "Save", "model" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/parsing/parser/biaffine_parser.py#L304-L316
train
dmlc/gluon-nlp
src/gluonnlp/data/dataloader.py
_worker_fn
def _worker_fn(samples, batchify_fn, dataset=None): """Function for processing data in worker process.""" # pylint: disable=unused-argument # it is required that each worker process has to fork a new MXIndexedRecordIO handle # preserving dataset as global variable can save tons of overhead and is safe i...
python
def _worker_fn(samples, batchify_fn, dataset=None): """Function for processing data in worker process.""" # pylint: disable=unused-argument # it is required that each worker process has to fork a new MXIndexedRecordIO handle # preserving dataset as global variable can save tons of overhead and is safe i...
[ "def", "_worker_fn", "(", "samples", ",", "batchify_fn", ",", "dataset", "=", "None", ")", ":", "# pylint: disable=unused-argument", "# it is required that each worker process has to fork a new MXIndexedRecordIO handle", "# preserving dataset as global variable can save tons of overhead ...
Function for processing data in worker process.
[ "Function", "for", "processing", "data", "in", "worker", "process", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/dataloader.py#L40-L52
train
dmlc/gluon-nlp
src/gluonnlp/data/dataloader.py
_thread_worker_fn
def _thread_worker_fn(samples, batchify_fn, dataset): """Threadpool worker function for processing data.""" if isinstance(samples[0], (list, tuple)): batch = [batchify_fn([dataset[i] for i in shard]) for shard in samples] else: batch = batchify_fn([dataset[i] for i in samples]) return ba...
python
def _thread_worker_fn(samples, batchify_fn, dataset): """Threadpool worker function for processing data.""" if isinstance(samples[0], (list, tuple)): batch = [batchify_fn([dataset[i] for i in shard]) for shard in samples] else: batch = batchify_fn([dataset[i] for i in samples]) return ba...
[ "def", "_thread_worker_fn", "(", "samples", ",", "batchify_fn", ",", "dataset", ")", ":", "if", "isinstance", "(", "samples", "[", "0", "]", ",", "(", "list", ",", "tuple", ")", ")", ":", "batch", "=", "[", "batchify_fn", "(", "[", "dataset", "[", "i...
Threadpool worker function for processing data.
[ "Threadpool", "worker", "function", "for", "processing", "data", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/dataloader.py#L54-L60
train
dmlc/gluon-nlp
src/gluonnlp/embedding/token_embedding.py
create
def create(embedding_name, **kwargs): """Creates an instance of token embedding. Creates a token embedding instance by loading embedding vectors from an externally hosted pre-trained token embedding file, such as those of GloVe and FastText. To get all the valid `embedding_name` and `source`, use :fun...
python
def create(embedding_name, **kwargs): """Creates an instance of token embedding. Creates a token embedding instance by loading embedding vectors from an externally hosted pre-trained token embedding file, such as those of GloVe and FastText. To get all the valid `embedding_name` and `source`, use :fun...
[ "def", "create", "(", "embedding_name", ",", "*", "*", "kwargs", ")", ":", "create_text_embedding", "=", "registry", ".", "get_create_func", "(", "TokenEmbedding", ",", "'token embedding'", ")", "return", "create_text_embedding", "(", "embedding_name", ",", "*", "...
Creates an instance of token embedding. Creates a token embedding instance by loading embedding vectors from an externally hosted pre-trained token embedding file, such as those of GloVe and FastText. To get all the valid `embedding_name` and `source`, use :func:`gluonnlp.embedding.list_sources`. Pa...
[ "Creates", "an", "instance", "of", "token", "embedding", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/embedding/token_embedding.py#L69-L97
train
dmlc/gluon-nlp
src/gluonnlp/embedding/token_embedding.py
list_sources
def list_sources(embedding_name=None): """Get valid token embedding names and their pre-trained file names. To load token embedding vectors from an externally hosted pre-trained token embedding file, such as those of GloVe and FastText, one should use `gluonnlp.embedding.create(embedding_name, source)...
python
def list_sources(embedding_name=None): """Get valid token embedding names and their pre-trained file names. To load token embedding vectors from an externally hosted pre-trained token embedding file, such as those of GloVe and FastText, one should use `gluonnlp.embedding.create(embedding_name, source)...
[ "def", "list_sources", "(", "embedding_name", "=", "None", ")", ":", "text_embedding_reg", "=", "registry", ".", "get_registry", "(", "TokenEmbedding", ")", "if", "embedding_name", "is", "not", "None", ":", "embedding_name", "=", "embedding_name", ".", "lower", ...
Get valid token embedding names and their pre-trained file names. To load token embedding vectors from an externally hosted pre-trained token embedding file, such as those of GloVe and FastText, one should use `gluonnlp.embedding.create(embedding_name, source)`. This method returns all the valid names...
[ "Get", "valid", "token", "embedding", "names", "and", "their", "pre", "-", "trained", "file", "names", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/embedding/token_embedding.py#L100-L139
train
dmlc/gluon-nlp
src/gluonnlp/embedding/token_embedding.py
TokenEmbedding._load_embedding
def _load_embedding(self, pretrained_file_path, elem_delim, encoding='utf8'): """Load embedding vectors from a pre-trained token embedding file. Both text files and TokenEmbedding serialization files are supported. elem_delim and encoding are ignored for non-text files. ...
python
def _load_embedding(self, pretrained_file_path, elem_delim, encoding='utf8'): """Load embedding vectors from a pre-trained token embedding file. Both text files and TokenEmbedding serialization files are supported. elem_delim and encoding are ignored for non-text files. ...
[ "def", "_load_embedding", "(", "self", ",", "pretrained_file_path", ",", "elem_delim", ",", "encoding", "=", "'utf8'", ")", ":", "pretrained_file_path", "=", "os", ".", "path", ".", "expanduser", "(", "pretrained_file_path", ")", "if", "not", "os", ".", "path"...
Load embedding vectors from a pre-trained token embedding file. Both text files and TokenEmbedding serialization files are supported. elem_delim and encoding are ignored for non-text files. For every unknown token, if its representation `self.unknown_token` is encountered in the pre-tr...
[ "Load", "embedding", "vectors", "from", "a", "pre", "-", "trained", "token", "embedding", "file", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/embedding/token_embedding.py#L221-L253
train
dmlc/gluon-nlp
src/gluonnlp/embedding/token_embedding.py
TokenEmbedding._load_embedding_txt
def _load_embedding_txt(self, pretrained_file_path, elem_delim, encoding='utf8'): """Load embedding vectors from a pre-trained token embedding file. For every unknown token, if its representation `self.unknown_token` is encountered in the pre-trained token embedding file, index 0 of `self.idx_t...
python
def _load_embedding_txt(self, pretrained_file_path, elem_delim, encoding='utf8'): """Load embedding vectors from a pre-trained token embedding file. For every unknown token, if its representation `self.unknown_token` is encountered in the pre-trained token embedding file, index 0 of `self.idx_t...
[ "def", "_load_embedding_txt", "(", "self", ",", "pretrained_file_path", ",", "elem_delim", ",", "encoding", "=", "'utf8'", ")", ":", "vec_len", "=", "None", "all_elems", "=", "[", "]", "tokens", "=", "set", "(", ")", "loaded_unknown_vec", "=", "None", "with"...
Load embedding vectors from a pre-trained token embedding file. For every unknown token, if its representation `self.unknown_token` is encountered in the pre-trained token embedding file, index 0 of `self.idx_to_vec` maps to the pre-trained token embedding vector loaded from the file; otherwise...
[ "Load", "embedding", "vectors", "from", "a", "pre", "-", "trained", "token", "embedding", "file", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/embedding/token_embedding.py#L255-L321
train
dmlc/gluon-nlp
src/gluonnlp/embedding/token_embedding.py
TokenEmbedding._load_embedding_serialized
def _load_embedding_serialized(self, pretrained_file_path): """Load embedding vectors from a pre-trained token embedding file. For every unknown token, if its representation `self.unknown_token` is encountered in the pre-trained token embedding file, index 0 of `self.idx_to_vec` maps to the pre...
python
def _load_embedding_serialized(self, pretrained_file_path): """Load embedding vectors from a pre-trained token embedding file. For every unknown token, if its representation `self.unknown_token` is encountered in the pre-trained token embedding file, index 0 of `self.idx_to_vec` maps to the pre...
[ "def", "_load_embedding_serialized", "(", "self", ",", "pretrained_file_path", ")", ":", "deserialized_embedding", "=", "TokenEmbedding", ".", "deserialize", "(", "pretrained_file_path", ")", "if", "deserialized_embedding", ".", "unknown_token", ":", "# Some .npz files on S...
Load embedding vectors from a pre-trained token embedding file. For every unknown token, if its representation `self.unknown_token` is encountered in the pre-trained token embedding file, index 0 of `self.idx_to_vec` maps to the pre-trained token embedding vector loaded from the file; otherwise...
[ "Load", "embedding", "vectors", "from", "a", "pre", "-", "trained", "token", "embedding", "file", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/embedding/token_embedding.py#L323-L380
train
dmlc/gluon-nlp
src/gluonnlp/embedding/token_embedding.py
TokenEmbedding._check_vector_update
def _check_vector_update(self, tokens, new_embedding): """Check that tokens and embedding are in the format for __setitem__.""" assert self._idx_to_vec is not None, '`idx_to_vec` has not been initialized.' if not isinstance(tokens, (list, tuple)) or len(tokens) == 1: assert isinstan...
python
def _check_vector_update(self, tokens, new_embedding): """Check that tokens and embedding are in the format for __setitem__.""" assert self._idx_to_vec is not None, '`idx_to_vec` has not been initialized.' if not isinstance(tokens, (list, tuple)) or len(tokens) == 1: assert isinstan...
[ "def", "_check_vector_update", "(", "self", ",", "tokens", ",", "new_embedding", ")", ":", "assert", "self", ".", "_idx_to_vec", "is", "not", "None", ",", "'`idx_to_vec` has not been initialized.'", "if", "not", "isinstance", "(", "tokens", ",", "(", "list", ","...
Check that tokens and embedding are in the format for __setitem__.
[ "Check", "that", "tokens", "and", "embedding", "are", "in", "the", "format", "for", "__setitem__", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/embedding/token_embedding.py#L553-L576
train
dmlc/gluon-nlp
src/gluonnlp/embedding/token_embedding.py
TokenEmbedding._check_source
def _check_source(cls, source_file_hash, source): """Checks if a pre-trained token embedding source name is valid. Parameters ---------- source : str The pre-trained token embedding source. """ embedding_name = cls.__name__.lower() if source not in s...
python
def _check_source(cls, source_file_hash, source): """Checks if a pre-trained token embedding source name is valid. Parameters ---------- source : str The pre-trained token embedding source. """ embedding_name = cls.__name__.lower() if source not in s...
[ "def", "_check_source", "(", "cls", ",", "source_file_hash", ",", "source", ")", ":", "embedding_name", "=", "cls", ".", "__name__", ".", "lower", "(", ")", "if", "source", "not", "in", "source_file_hash", ":", "raise", "KeyError", "(", "'Cannot find pre-train...
Checks if a pre-trained token embedding source name is valid. Parameters ---------- source : str The pre-trained token embedding source.
[ "Checks", "if", "a", "pre", "-", "trained", "token", "embedding", "source", "name", "is", "valid", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/embedding/token_embedding.py#L643-L657
train
dmlc/gluon-nlp
src/gluonnlp/embedding/token_embedding.py
TokenEmbedding.from_file
def from_file(file_path, elem_delim=' ', encoding='utf8', **kwargs): """Creates a user-defined token embedding from a pre-trained embedding file. This is to load embedding vectors from a user-defined pre-trained token embedding file. For example, if `elem_delim` = ' ', the expected format of a...
python
def from_file(file_path, elem_delim=' ', encoding='utf8', **kwargs): """Creates a user-defined token embedding from a pre-trained embedding file. This is to load embedding vectors from a user-defined pre-trained token embedding file. For example, if `elem_delim` = ' ', the expected format of a...
[ "def", "from_file", "(", "file_path", ",", "elem_delim", "=", "' '", ",", "encoding", "=", "'utf8'", ",", "*", "*", "kwargs", ")", ":", "embedding", "=", "TokenEmbedding", "(", "*", "*", "kwargs", ")", "embedding", ".", "_load_embedding", "(", "file_path",...
Creates a user-defined token embedding from a pre-trained embedding file. This is to load embedding vectors from a user-defined pre-trained token embedding file. For example, if `elem_delim` = ' ', the expected format of a custom pre-trained token embedding file may look like: 'hello ...
[ "Creates", "a", "user", "-", "defined", "token", "embedding", "from", "a", "pre", "-", "trained", "embedding", "file", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/embedding/token_embedding.py#L660-L694
train
dmlc/gluon-nlp
src/gluonnlp/embedding/token_embedding.py
TokenEmbedding.serialize
def serialize(self, file_path, compress=True): """Serializes the TokenEmbedding to a file specified by file_path. TokenEmbedding is serialized by converting the list of tokens, the array of word embeddings and other metadata to numpy arrays, saving all in a single (optionally compressed...
python
def serialize(self, file_path, compress=True): """Serializes the TokenEmbedding to a file specified by file_path. TokenEmbedding is serialized by converting the list of tokens, the array of word embeddings and other metadata to numpy arrays, saving all in a single (optionally compressed...
[ "def", "serialize", "(", "self", ",", "file_path", ",", "compress", "=", "True", ")", ":", "if", "self", ".", "unknown_lookup", "is", "not", "None", ":", "warnings", ".", "warn", "(", "'Serialization of `unknown_lookup` is not supported. '", "'Save it manually and p...
Serializes the TokenEmbedding to a file specified by file_path. TokenEmbedding is serialized by converting the list of tokens, the array of word embeddings and other metadata to numpy arrays, saving all in a single (optionally compressed) Zipfile. See https://docs.scipy.org/doc/numpy-1....
[ "Serializes", "the", "TokenEmbedding", "to", "a", "file", "specified", "by", "file_path", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/embedding/token_embedding.py#L696-L737
train
dmlc/gluon-nlp
src/gluonnlp/embedding/token_embedding.py
TokenEmbedding.deserialize
def deserialize(cls, file_path, **kwargs): """Create a new TokenEmbedding from a serialized one. TokenEmbedding is serialized by converting the list of tokens, the array of word embeddings and other metadata to numpy arrays, saving all in a single (optionally compressed) Zipfile. See ...
python
def deserialize(cls, file_path, **kwargs): """Create a new TokenEmbedding from a serialized one. TokenEmbedding is serialized by converting the list of tokens, the array of word embeddings and other metadata to numpy arrays, saving all in a single (optionally compressed) Zipfile. See ...
[ "def", "deserialize", "(", "cls", ",", "file_path", ",", "*", "*", "kwargs", ")", ":", "# idx_to_token is of dtype 'O' so we need to allow pickle", "npz_dict", "=", "np", ".", "load", "(", "file_path", ",", "allow_pickle", "=", "True", ")", "unknown_token", "=", ...
Create a new TokenEmbedding from a serialized one. TokenEmbedding is serialized by converting the list of tokens, the array of word embeddings and other metadata to numpy arrays, saving all in a single (optionally compressed) Zipfile. See https://docs.scipy.org/doc/numpy-1.14.2/neps/npy...
[ "Create", "a", "new", "TokenEmbedding", "from", "a", "serialized", "one", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/embedding/token_embedding.py#L740-L784
train
dmlc/gluon-nlp
scripts/bert/staticbert/static_export_squad.py
evaluate
def evaluate(data_source): """Evaluate the model on a mini-batch. """ log.info('Start predict') tic = time.time() for batch in data_source: inputs, token_types, valid_length = batch out = net(inputs.astype('float32').as_in_context(ctx), token_types.astype('float32')...
python
def evaluate(data_source): """Evaluate the model on a mini-batch. """ log.info('Start predict') tic = time.time() for batch in data_source: inputs, token_types, valid_length = batch out = net(inputs.astype('float32').as_in_context(ctx), token_types.astype('float32')...
[ "def", "evaluate", "(", "data_source", ")", ":", "log", ".", "info", "(", "'Start predict'", ")", "tic", "=", "time", ".", "time", "(", ")", "for", "batch", "in", "data_source", ":", "inputs", ",", "token_types", ",", "valid_length", "=", "batch", "out",...
Evaluate the model on a mini-batch.
[ "Evaluate", "the", "model", "on", "a", "mini", "-", "batch", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/staticbert/static_export_squad.py#L210-L223
train
dmlc/gluon-nlp
src/gluonnlp/data/registry.py
register
def register(class_=None, **kwargs): """Registers a dataset with segment specific hyperparameters. When passing keyword arguments to `register`, they are checked to be valid keyword arguments for the registered Dataset class constructor and are saved in the registry. Registered keyword arguments can be...
python
def register(class_=None, **kwargs): """Registers a dataset with segment specific hyperparameters. When passing keyword arguments to `register`, they are checked to be valid keyword arguments for the registered Dataset class constructor and are saved in the registry. Registered keyword arguments can be...
[ "def", "register", "(", "class_", "=", "None", ",", "*", "*", "kwargs", ")", ":", "def", "_real_register", "(", "class_", ")", ":", "# Assert that the passed kwargs are meaningful", "for", "kwarg_name", ",", "values", "in", "kwargs", ".", "items", "(", ")", ...
Registers a dataset with segment specific hyperparameters. When passing keyword arguments to `register`, they are checked to be valid keyword arguments for the registered Dataset class constructor and are saved in the registry. Registered keyword arguments can be retrieved with the `list_datasets` func...
[ "Registers", "a", "dataset", "with", "segment", "specific", "hyperparameters", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/registry.py#L34-L97
train
dmlc/gluon-nlp
src/gluonnlp/data/registry.py
create
def create(name, **kwargs): """Creates an instance of a registered dataset. Parameters ---------- name : str The dataset name (case-insensitive). Returns ------- An instance of :class:`mxnet.gluon.data.Dataset` constructed with the keyword arguments passed to the create functio...
python
def create(name, **kwargs): """Creates an instance of a registered dataset. Parameters ---------- name : str The dataset name (case-insensitive). Returns ------- An instance of :class:`mxnet.gluon.data.Dataset` constructed with the keyword arguments passed to the create functio...
[ "def", "create", "(", "name", ",", "*", "*", "kwargs", ")", ":", "create_", "=", "registry", ".", "get_create_func", "(", "Dataset", ",", "'dataset'", ")", "return", "create_", "(", "name", ",", "*", "*", "kwargs", ")" ]
Creates an instance of a registered dataset. Parameters ---------- name : str The dataset name (case-insensitive). Returns ------- An instance of :class:`mxnet.gluon.data.Dataset` constructed with the keyword arguments passed to the create function.
[ "Creates", "an", "instance", "of", "a", "registered", "dataset", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/registry.py#L100-L115
train
dmlc/gluon-nlp
src/gluonnlp/data/registry.py
list_datasets
def list_datasets(name=None): """Get valid datasets and registered parameters. Parameters ---------- name : str or None, default None Return names and registered parameters of registered datasets. If name is specified, only registered parameters of the respective dataset are ret...
python
def list_datasets(name=None): """Get valid datasets and registered parameters. Parameters ---------- name : str or None, default None Return names and registered parameters of registered datasets. If name is specified, only registered parameters of the respective dataset are ret...
[ "def", "list_datasets", "(", "name", "=", "None", ")", ":", "reg", "=", "registry", ".", "get_registry", "(", "Dataset", ")", "if", "name", "is", "not", "None", ":", "class_", "=", "reg", "[", "name", ".", "lower", "(", ")", "]", "return", "_REGSITRY...
Get valid datasets and registered parameters. Parameters ---------- name : str or None, default None Return names and registered parameters of registered datasets. If name is specified, only registered parameters of the respective dataset are returned. Returns ------- d...
[ "Get", "valid", "datasets", "and", "registered", "parameters", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/registry.py#L118-L146
train
dmlc/gluon-nlp
scripts/word_embeddings/extract_vocab.py
parse_args
def parse_args(): """Parse command line arguments.""" parser = argparse.ArgumentParser( description='Vocabulary extractor.', formatter_class=argparse.ArgumentDefaultsHelpFormatter) parser.add_argument('--max-size', type=int, default=None) parser.add_argument('--min-freq', type=int, defau...
python
def parse_args(): """Parse command line arguments.""" parser = argparse.ArgumentParser( description='Vocabulary extractor.', formatter_class=argparse.ArgumentDefaultsHelpFormatter) parser.add_argument('--max-size', type=int, default=None) parser.add_argument('--min-freq', type=int, defau...
[ "def", "parse_args", "(", ")", ":", "parser", "=", "argparse", ".", "ArgumentParser", "(", "description", "=", "'Vocabulary extractor.'", ",", "formatter_class", "=", "argparse", ".", "ArgumentDefaultsHelpFormatter", ")", "parser", ".", "add_argument", "(", "'--max-...
Parse command line arguments.
[ "Parse", "command", "line", "arguments", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/extract_vocab.py#L32-L44
train
dmlc/gluon-nlp
scripts/word_embeddings/extract_vocab.py
get_vocab
def get_vocab(args): """Compute the vocabulary.""" counter = nlp.data.Counter() start = time.time() for filename in args.files: print('Starting processing of {} after {:.1f} seconds.'.format( filename, time.time() - start)) with open(filename, 'r') as f: ...
python
def get_vocab(args): """Compute the vocabulary.""" counter = nlp.data.Counter() start = time.time() for filename in args.files: print('Starting processing of {} after {:.1f} seconds.'.format( filename, time.time() - start)) with open(filename, 'r') as f: ...
[ "def", "get_vocab", "(", "args", ")", ":", "counter", "=", "nlp", ".", "data", ".", "Counter", "(", ")", "start", "=", "time", ".", "time", "(", ")", "for", "filename", "in", "args", ".", "files", ":", "print", "(", "'Starting processing of {} after {:.1...
Compute the vocabulary.
[ "Compute", "the", "vocabulary", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/extract_vocab.py#L47-L87
train
dmlc/gluon-nlp
scripts/bert/bert.py
BERTClassifier.forward
def forward(self, inputs, token_types, valid_length=None): # pylint: disable=arguments-differ """Generate the unnormalized score for the given the input sequences. Parameters ---------- inputs : NDArray, shape (batch_size, seq_length) Input words for the sequences. ...
python
def forward(self, inputs, token_types, valid_length=None): # pylint: disable=arguments-differ """Generate the unnormalized score for the given the input sequences. Parameters ---------- inputs : NDArray, shape (batch_size, seq_length) Input words for the sequences. ...
[ "def", "forward", "(", "self", ",", "inputs", ",", "token_types", ",", "valid_length", "=", "None", ")", ":", "# pylint: disable=arguments-differ", "_", ",", "pooler_out", "=", "self", ".", "bert", "(", "inputs", ",", "token_types", ",", "valid_length", ")", ...
Generate the unnormalized score for the given the input sequences. Parameters ---------- inputs : NDArray, shape (batch_size, seq_length) Input words for the sequences. token_types : NDArray, shape (batch_size, seq_length) Token types for the sequences, used to i...
[ "Generate", "the", "unnormalized", "score", "for", "the", "given", "the", "input", "sequences", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/bert.py#L111-L130
train
dmlc/gluon-nlp
scripts/word_embeddings/evaluation.py
add_parameters
def add_parameters(parser): """Add evaluation specific parameters to parser.""" group = parser.add_argument_group('Evaluation arguments') group.add_argument('--eval-batch-size', type=int, default=1024) # Datasets group.add_argument( '--similarity-datasets', type=str, default=nlp.da...
python
def add_parameters(parser): """Add evaluation specific parameters to parser.""" group = parser.add_argument_group('Evaluation arguments') group.add_argument('--eval-batch-size', type=int, default=1024) # Datasets group.add_argument( '--similarity-datasets', type=str, default=nlp.da...
[ "def", "add_parameters", "(", "parser", ")", ":", "group", "=", "parser", ".", "add_argument_group", "(", "'Evaluation arguments'", ")", "group", ".", "add_argument", "(", "'--eval-batch-size'", ",", "type", "=", "int", ",", "default", "=", "1024", ")", "# Dat...
Add evaluation specific parameters to parser.
[ "Add", "evaluation", "specific", "parameters", "to", "parser", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/evaluation.py#L38-L70
train
dmlc/gluon-nlp
scripts/word_embeddings/evaluation.py
validate_args
def validate_args(args): """Validate provided arguments and act on --help.""" # Check correctness of similarity dataset names for dataset_name in args.similarity_datasets: if dataset_name.lower() not in map( str.lower, nlp.data.word_embedding_evaluation.word_similarit...
python
def validate_args(args): """Validate provided arguments and act on --help.""" # Check correctness of similarity dataset names for dataset_name in args.similarity_datasets: if dataset_name.lower() not in map( str.lower, nlp.data.word_embedding_evaluation.word_similarit...
[ "def", "validate_args", "(", "args", ")", ":", "# Check correctness of similarity dataset names", "for", "dataset_name", "in", "args", ".", "similarity_datasets", ":", "if", "dataset_name", ".", "lower", "(", ")", "not", "in", "map", "(", "str", ".", "lower", ",...
Validate provided arguments and act on --help.
[ "Validate", "provided", "arguments", "and", "act", "on", "--", "help", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/evaluation.py#L73-L89
train
dmlc/gluon-nlp
scripts/word_embeddings/evaluation.py
iterate_similarity_datasets
def iterate_similarity_datasets(args): """Generator over all similarity evaluation datasets. Iterates over dataset names, keyword arguments for their creation and the created dataset. """ for dataset_name in args.similarity_datasets: parameters = nlp.data.list_datasets(dataset_name) ...
python
def iterate_similarity_datasets(args): """Generator over all similarity evaluation datasets. Iterates over dataset names, keyword arguments for their creation and the created dataset. """ for dataset_name in args.similarity_datasets: parameters = nlp.data.list_datasets(dataset_name) ...
[ "def", "iterate_similarity_datasets", "(", "args", ")", ":", "for", "dataset_name", "in", "args", ".", "similarity_datasets", ":", "parameters", "=", "nlp", ".", "data", ".", "list_datasets", "(", "dataset_name", ")", "for", "key_values", "in", "itertools", ".",...
Generator over all similarity evaluation datasets. Iterates over dataset names, keyword arguments for their creation and the created dataset.
[ "Generator", "over", "all", "similarity", "evaluation", "datasets", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/evaluation.py#L92-L103
train
dmlc/gluon-nlp
scripts/word_embeddings/evaluation.py
iterate_analogy_datasets
def iterate_analogy_datasets(args): """Generator over all analogy evaluation datasets. Iterates over dataset names, keyword arguments for their creation and the created dataset. """ for dataset_name in args.analogy_datasets: parameters = nlp.data.list_datasets(dataset_name) for key...
python
def iterate_analogy_datasets(args): """Generator over all analogy evaluation datasets. Iterates over dataset names, keyword arguments for their creation and the created dataset. """ for dataset_name in args.analogy_datasets: parameters = nlp.data.list_datasets(dataset_name) for key...
[ "def", "iterate_analogy_datasets", "(", "args", ")", ":", "for", "dataset_name", "in", "args", ".", "analogy_datasets", ":", "parameters", "=", "nlp", ".", "data", ".", "list_datasets", "(", "dataset_name", ")", "for", "key_values", "in", "itertools", ".", "pr...
Generator over all analogy evaluation datasets. Iterates over dataset names, keyword arguments for their creation and the created dataset.
[ "Generator", "over", "all", "analogy", "evaluation", "datasets", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/evaluation.py#L106-L117
train
dmlc/gluon-nlp
scripts/word_embeddings/evaluation.py
get_similarity_task_tokens
def get_similarity_task_tokens(args): """Returns a set of all tokens occurring the evaluation datasets.""" tokens = set() for _, _, dataset in iterate_similarity_datasets(args): tokens.update( itertools.chain.from_iterable((d[0], d[1]) for d in dataset)) return tokens
python
def get_similarity_task_tokens(args): """Returns a set of all tokens occurring the evaluation datasets.""" tokens = set() for _, _, dataset in iterate_similarity_datasets(args): tokens.update( itertools.chain.from_iterable((d[0], d[1]) for d in dataset)) return tokens
[ "def", "get_similarity_task_tokens", "(", "args", ")", ":", "tokens", "=", "set", "(", ")", "for", "_", ",", "_", ",", "dataset", "in", "iterate_similarity_datasets", "(", "args", ")", ":", "tokens", ".", "update", "(", "itertools", ".", "chain", ".", "f...
Returns a set of all tokens occurring the evaluation datasets.
[ "Returns", "a", "set", "of", "all", "tokens", "occurring", "the", "evaluation", "datasets", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/evaluation.py#L120-L126
train
dmlc/gluon-nlp
scripts/word_embeddings/evaluation.py
get_analogy_task_tokens
def get_analogy_task_tokens(args): """Returns a set of all tokens occuring the evaluation datasets.""" tokens = set() for _, _, dataset in iterate_analogy_datasets(args): tokens.update( itertools.chain.from_iterable( (d[0], d[1], d[2], d[3]) for d in dataset)) return ...
python
def get_analogy_task_tokens(args): """Returns a set of all tokens occuring the evaluation datasets.""" tokens = set() for _, _, dataset in iterate_analogy_datasets(args): tokens.update( itertools.chain.from_iterable( (d[0], d[1], d[2], d[3]) for d in dataset)) return ...
[ "def", "get_analogy_task_tokens", "(", "args", ")", ":", "tokens", "=", "set", "(", ")", "for", "_", ",", "_", ",", "dataset", "in", "iterate_analogy_datasets", "(", "args", ")", ":", "tokens", ".", "update", "(", "itertools", ".", "chain", ".", "from_it...
Returns a set of all tokens occuring the evaluation datasets.
[ "Returns", "a", "set", "of", "all", "tokens", "occuring", "the", "evaluation", "datasets", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/evaluation.py#L129-L136
train
dmlc/gluon-nlp
scripts/word_embeddings/evaluation.py
evaluate_similarity
def evaluate_similarity(args, token_embedding, ctx, logfile=None, global_step=0): """Evaluate on specified similarity datasets.""" results = [] for similarity_function in args.similarity_functions: evaluator = nlp.embedding.evaluation.WordEmbeddingSimilarity( idx...
python
def evaluate_similarity(args, token_embedding, ctx, logfile=None, global_step=0): """Evaluate on specified similarity datasets.""" results = [] for similarity_function in args.similarity_functions: evaluator = nlp.embedding.evaluation.WordEmbeddingSimilarity( idx...
[ "def", "evaluate_similarity", "(", "args", ",", "token_embedding", ",", "ctx", ",", "logfile", "=", "None", ",", "global_step", "=", "0", ")", ":", "results", "=", "[", "]", "for", "similarity_function", "in", "args", ".", "similarity_functions", ":", "evalu...
Evaluate on specified similarity datasets.
[ "Evaluate", "on", "specified", "similarity", "datasets", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/evaluation.py#L145-L197
train
dmlc/gluon-nlp
scripts/word_embeddings/evaluation.py
evaluate_analogy
def evaluate_analogy(args, token_embedding, ctx, logfile=None, global_step=0): """Evaluate on specified analogy datasets. The analogy task is an open vocabulary task, make sure to pass a token_embedding with a sufficiently large number of supported tokens. """ results = [] exclude_question_wor...
python
def evaluate_analogy(args, token_embedding, ctx, logfile=None, global_step=0): """Evaluate on specified analogy datasets. The analogy task is an open vocabulary task, make sure to pass a token_embedding with a sufficiently large number of supported tokens. """ results = [] exclude_question_wor...
[ "def", "evaluate_analogy", "(", "args", ",", "token_embedding", ",", "ctx", ",", "logfile", "=", "None", ",", "global_step", "=", "0", ")", ":", "results", "=", "[", "]", "exclude_question_words", "=", "not", "args", ".", "analogy_dont_exclude_question_words", ...
Evaluate on specified analogy datasets. The analogy task is an open vocabulary task, make sure to pass a token_embedding with a sufficiently large number of supported tokens.
[ "Evaluate", "on", "specified", "analogy", "datasets", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/evaluation.py#L200-L259
train
dmlc/gluon-nlp
scripts/word_embeddings/evaluation.py
log_similarity_result
def log_similarity_result(logfile, result): """Log a similarity evaluation result dictionary as TSV to logfile.""" assert result['task'] == 'similarity' if not logfile: return with open(logfile, 'a') as f: f.write('\t'.join([ str(result['global_step']), result['...
python
def log_similarity_result(logfile, result): """Log a similarity evaluation result dictionary as TSV to logfile.""" assert result['task'] == 'similarity' if not logfile: return with open(logfile, 'a') as f: f.write('\t'.join([ str(result['global_step']), result['...
[ "def", "log_similarity_result", "(", "logfile", ",", "result", ")", ":", "assert", "result", "[", "'task'", "]", "==", "'similarity'", "if", "not", "logfile", ":", "return", "with", "open", "(", "logfile", ",", "'a'", ")", "as", "f", ":", "f", ".", "wr...
Log a similarity evaluation result dictionary as TSV to logfile.
[ "Log", "a", "similarity", "evaluation", "result", "dictionary", "as", "TSV", "to", "logfile", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/evaluation.py#L262-L280
train
dmlc/gluon-nlp
scripts/bert/pretraining_utils.py
get_model_loss
def get_model_loss(ctx, model, pretrained, dataset_name, dtype, ckpt_dir=None, start_step=None): """Get model for pre-training.""" # model model, vocabulary = nlp.model.get_model(model, dataset_name=dataset_name, pretrai...
python
def get_model_loss(ctx, model, pretrained, dataset_name, dtype, ckpt_dir=None, start_step=None): """Get model for pre-training.""" # model model, vocabulary = nlp.model.get_model(model, dataset_name=dataset_name, pretrai...
[ "def", "get_model_loss", "(", "ctx", ",", "model", ",", "pretrained", ",", "dataset_name", ",", "dtype", ",", "ckpt_dir", "=", "None", ",", "start_step", "=", "None", ")", ":", "# model", "model", ",", "vocabulary", "=", "nlp", ".", "model", ".", "get_mo...
Get model for pre-training.
[ "Get", "model", "for", "pre", "-", "training", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/pretraining_utils.py#L36-L60
train
dmlc/gluon-nlp
scripts/bert/pretraining_utils.py
get_pretrain_dataset
def get_pretrain_dataset(data, batch_size, num_ctxes, shuffle, use_avg_len, num_buckets, num_parts=1, part_idx=0, prefetch=True): """create dataset for pretraining.""" num_files = len(glob.glob(os.path.expanduser(data))) logging.debug('%d files found.', num_files) assert num_fil...
python
def get_pretrain_dataset(data, batch_size, num_ctxes, shuffle, use_avg_len, num_buckets, num_parts=1, part_idx=0, prefetch=True): """create dataset for pretraining.""" num_files = len(glob.glob(os.path.expanduser(data))) logging.debug('%d files found.', num_files) assert num_fil...
[ "def", "get_pretrain_dataset", "(", "data", ",", "batch_size", ",", "num_ctxes", ",", "shuffle", ",", "use_avg_len", ",", "num_buckets", ",", "num_parts", "=", "1", ",", "part_idx", "=", "0", ",", "prefetch", "=", "True", ")", ":", "num_files", "=", "len",...
create dataset for pretraining.
[ "create", "dataset", "for", "pretraining", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/pretraining_utils.py#L62-L107
train
dmlc/gluon-nlp
scripts/bert/pretraining_utils.py
get_dummy_dataloader
def get_dummy_dataloader(dataloader, target_shape): """Return a dummy data loader which returns a fixed data batch of target shape""" data_iter = enumerate(dataloader) _, data_batch = next(data_iter) logging.debug('Searching target batch shape: %s', target_shape) while data_batch[0].shape != target_...
python
def get_dummy_dataloader(dataloader, target_shape): """Return a dummy data loader which returns a fixed data batch of target shape""" data_iter = enumerate(dataloader) _, data_batch = next(data_iter) logging.debug('Searching target batch shape: %s', target_shape) while data_batch[0].shape != target_...
[ "def", "get_dummy_dataloader", "(", "dataloader", ",", "target_shape", ")", ":", "data_iter", "=", "enumerate", "(", "dataloader", ")", "_", ",", "data_batch", "=", "next", "(", "data_iter", ")", "logging", ".", "debug", "(", "'Searching target batch shape: %s'", ...
Return a dummy data loader which returns a fixed data batch of target shape
[ "Return", "a", "dummy", "data", "loader", "which", "returns", "a", "fixed", "data", "batch", "of", "target", "shape" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/pretraining_utils.py#L109-L127
train
dmlc/gluon-nlp
scripts/bert/pretraining_utils.py
save_params
def save_params(step_num, model, trainer, ckpt_dir): """Save the model parameter, marked by step_num.""" param_path = os.path.join(ckpt_dir, '%07d.params'%step_num) trainer_path = os.path.join(ckpt_dir, '%07d.states'%step_num) logging.info('[step %d] Saving checkpoints to %s, %s.', step...
python
def save_params(step_num, model, trainer, ckpt_dir): """Save the model parameter, marked by step_num.""" param_path = os.path.join(ckpt_dir, '%07d.params'%step_num) trainer_path = os.path.join(ckpt_dir, '%07d.states'%step_num) logging.info('[step %d] Saving checkpoints to %s, %s.', step...
[ "def", "save_params", "(", "step_num", ",", "model", ",", "trainer", ",", "ckpt_dir", ")", ":", "param_path", "=", "os", ".", "path", ".", "join", "(", "ckpt_dir", ",", "'%07d.params'", "%", "step_num", ")", "trainer_path", "=", "os", ".", "path", ".", ...
Save the model parameter, marked by step_num.
[ "Save", "the", "model", "parameter", "marked", "by", "step_num", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/pretraining_utils.py#L129-L136
train
dmlc/gluon-nlp
scripts/bert/pretraining_utils.py
log
def log(begin_time, running_num_tks, running_mlm_loss, running_nsp_loss, step_num, mlm_metric, nsp_metric, trainer, log_interval): """Log training progress.""" end_time = time.time() duration = end_time - begin_time throughput = running_num_tks / duration / 1000.0 running_mlm_loss = running_...
python
def log(begin_time, running_num_tks, running_mlm_loss, running_nsp_loss, step_num, mlm_metric, nsp_metric, trainer, log_interval): """Log training progress.""" end_time = time.time() duration = end_time - begin_time throughput = running_num_tks / duration / 1000.0 running_mlm_loss = running_...
[ "def", "log", "(", "begin_time", ",", "running_num_tks", ",", "running_mlm_loss", ",", "running_nsp_loss", ",", "step_num", ",", "mlm_metric", ",", "nsp_metric", ",", "trainer", ",", "log_interval", ")", ":", "end_time", "=", "time", ".", "time", "(", ")", "...
Log training progress.
[ "Log", "training", "progress", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/pretraining_utils.py#L138-L150
train
dmlc/gluon-nlp
scripts/bert/pretraining_utils.py
split_and_load
def split_and_load(arrs, ctx): """split and load arrays to a list of contexts""" assert isinstance(arrs, (list, tuple)) # split and load loaded_arrs = [mx.gluon.utils.split_and_load(arr, ctx, even_split=False) for arr in arrs] return zip(*loaded_arrs)
python
def split_and_load(arrs, ctx): """split and load arrays to a list of contexts""" assert isinstance(arrs, (list, tuple)) # split and load loaded_arrs = [mx.gluon.utils.split_and_load(arr, ctx, even_split=False) for arr in arrs] return zip(*loaded_arrs)
[ "def", "split_and_load", "(", "arrs", ",", "ctx", ")", ":", "assert", "isinstance", "(", "arrs", ",", "(", "list", ",", "tuple", ")", ")", "# split and load", "loaded_arrs", "=", "[", "mx", ".", "gluon", ".", "utils", ".", "split_and_load", "(", "arr", ...
split and load arrays to a list of contexts
[ "split", "and", "load", "arrays", "to", "a", "list", "of", "contexts" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/pretraining_utils.py#L153-L158
train
dmlc/gluon-nlp
scripts/bert/pretraining_utils.py
forward
def forward(data, model, mlm_loss, nsp_loss, vocab_size, dtype): """forward computation for evaluation""" (input_id, masked_id, masked_position, masked_weight, \ next_sentence_label, segment_id, valid_length) = data num_masks = masked_weight.sum() + 1e-8 valid_length = valid_length.reshape(-1) ...
python
def forward(data, model, mlm_loss, nsp_loss, vocab_size, dtype): """forward computation for evaluation""" (input_id, masked_id, masked_position, masked_weight, \ next_sentence_label, segment_id, valid_length) = data num_masks = masked_weight.sum() + 1e-8 valid_length = valid_length.reshape(-1) ...
[ "def", "forward", "(", "data", ",", "model", ",", "mlm_loss", ",", "nsp_loss", ",", "vocab_size", ",", "dtype", ")", ":", "(", "input_id", ",", "masked_id", ",", "masked_position", ",", "masked_weight", ",", "next_sentence_label", ",", "segment_id", ",", "va...
forward computation for evaluation
[ "forward", "computation", "for", "evaluation" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/pretraining_utils.py#L161-L179
train
dmlc/gluon-nlp
scripts/bert/pretraining_utils.py
evaluate
def evaluate(data_eval, model, nsp_loss, mlm_loss, vocab_size, ctx, log_interval, dtype): """Evaluation function.""" mlm_metric = MaskedAccuracy() nsp_metric = MaskedAccuracy() mlm_metric.reset() nsp_metric.reset() eval_begin_time = time.time() begin_time = time.time() step_num = 0 ...
python
def evaluate(data_eval, model, nsp_loss, mlm_loss, vocab_size, ctx, log_interval, dtype): """Evaluation function.""" mlm_metric = MaskedAccuracy() nsp_metric = MaskedAccuracy() mlm_metric.reset() nsp_metric.reset() eval_begin_time = time.time() begin_time = time.time() step_num = 0 ...
[ "def", "evaluate", "(", "data_eval", ",", "model", ",", "nsp_loss", ",", "mlm_loss", ",", "vocab_size", ",", "ctx", ",", "log_interval", ",", "dtype", ")", ":", "mlm_metric", "=", "MaskedAccuracy", "(", ")", "nsp_metric", "=", "MaskedAccuracy", "(", ")", "...
Evaluation function.
[ "Evaluation", "function", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/pretraining_utils.py#L182-L238
train
dmlc/gluon-nlp
scripts/bert/pretraining_utils.py
get_argparser
def get_argparser(): """Argument parser""" parser = argparse.ArgumentParser(description='BERT pretraining example.') parser.add_argument('--num_steps', type=int, default=20, help='Number of optimization steps') parser.add_argument('--num_buckets', type=int, default=1, help='Numbe...
python
def get_argparser(): """Argument parser""" parser = argparse.ArgumentParser(description='BERT pretraining example.') parser.add_argument('--num_steps', type=int, default=20, help='Number of optimization steps') parser.add_argument('--num_buckets', type=int, default=1, help='Numbe...
[ "def", "get_argparser", "(", ")", ":", "parser", "=", "argparse", ".", "ArgumentParser", "(", "description", "=", "'BERT pretraining example.'", ")", "parser", ".", "add_argument", "(", "'--num_steps'", ",", "type", "=", "int", ",", "default", "=", "20", ",", ...
Argument parser
[ "Argument", "parser" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/pretraining_utils.py#L240-L285
train
dmlc/gluon-nlp
scripts/machine_translation/dataprocessor.py
_cache_dataset
def _cache_dataset(dataset, prefix): """Cache the processed npy dataset the dataset into a npz Parameters ---------- dataset : SimpleDataset file_path : str """ if not os.path.exists(_constants.CACHE_PATH): os.makedirs(_constants.CACHE_PATH) src_data = np.concatenate([e[0] for e...
python
def _cache_dataset(dataset, prefix): """Cache the processed npy dataset the dataset into a npz Parameters ---------- dataset : SimpleDataset file_path : str """ if not os.path.exists(_constants.CACHE_PATH): os.makedirs(_constants.CACHE_PATH) src_data = np.concatenate([e[0] for e...
[ "def", "_cache_dataset", "(", "dataset", ",", "prefix", ")", ":", "if", "not", "os", ".", "path", ".", "exists", "(", "_constants", ".", "CACHE_PATH", ")", ":", "os", ".", "makedirs", "(", "_constants", ".", "CACHE_PATH", ")", "src_data", "=", "np", "....
Cache the processed npy dataset the dataset into a npz Parameters ---------- dataset : SimpleDataset file_path : str
[ "Cache", "the", "processed", "npy", "dataset", "the", "dataset", "into", "a", "npz" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/machine_translation/dataprocessor.py#L33-L49
train
dmlc/gluon-nlp
scripts/machine_translation/dataprocessor.py
load_translation_data
def load_translation_data(dataset, bleu, args): """Load translation dataset Parameters ---------- dataset : str args : argparse result Returns ------- """ src_lang, tgt_lang = args.src_lang, args.tgt_lang if dataset == 'IWSLT2015': common_prefix = 'IWSLT2015_{}_{}_{}_{...
python
def load_translation_data(dataset, bleu, args): """Load translation dataset Parameters ---------- dataset : str args : argparse result Returns ------- """ src_lang, tgt_lang = args.src_lang, args.tgt_lang if dataset == 'IWSLT2015': common_prefix = 'IWSLT2015_{}_{}_{}_{...
[ "def", "load_translation_data", "(", "dataset", ",", "bleu", ",", "args", ")", ":", "src_lang", ",", "tgt_lang", "=", "args", ".", "src_lang", ",", "args", ".", "tgt_lang", "if", "dataset", "==", "'IWSLT2015'", ":", "common_prefix", "=", "'IWSLT2015_{}_{}_{}_{...
Load translation dataset Parameters ---------- dataset : str args : argparse result Returns -------
[ "Load", "translation", "dataset" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/machine_translation/dataprocessor.py#L117-L198
train
dmlc/gluon-nlp
scripts/machine_translation/dataprocessor.py
make_dataloader
def make_dataloader(data_train, data_val, data_test, args, use_average_length=False, num_shards=0, num_workers=8): """Create data loaders for training/validation/test.""" data_train_lengths = get_data_lengths(data_train) data_val_lengths = get_data_lengths(data_val) data_test_lengths...
python
def make_dataloader(data_train, data_val, data_test, args, use_average_length=False, num_shards=0, num_workers=8): """Create data loaders for training/validation/test.""" data_train_lengths = get_data_lengths(data_train) data_val_lengths = get_data_lengths(data_val) data_test_lengths...
[ "def", "make_dataloader", "(", "data_train", ",", "data_val", ",", "data_test", ",", "args", ",", "use_average_length", "=", "False", ",", "num_shards", "=", "0", ",", "num_workers", "=", "8", ")", ":", "data_train_lengths", "=", "get_data_lengths", "(", "data...
Create data loaders for training/validation/test.
[ "Create", "data", "loaders", "for", "training", "/", "validation", "/", "test", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/machine_translation/dataprocessor.py#L206-L265
train
dmlc/gluon-nlp
src/gluonnlp/data/stream.py
_Prefetcher.run
def run(self): """Method representing the process’s activity.""" random.seed(self.seed) np.random.seed(self.np_seed) if not isinstance(self, multiprocessing.Process): # Calling mxnet methods in a subprocess will raise an exception if # mxnet is built with GPU supp...
python
def run(self): """Method representing the process’s activity.""" random.seed(self.seed) np.random.seed(self.np_seed) if not isinstance(self, multiprocessing.Process): # Calling mxnet methods in a subprocess will raise an exception if # mxnet is built with GPU supp...
[ "def", "run", "(", "self", ")", ":", "random", ".", "seed", "(", "self", ".", "seed", ")", "np", ".", "random", ".", "seed", "(", "self", ".", "np_seed", ")", "if", "not", "isinstance", "(", "self", ",", "multiprocessing", ".", "Process", ")", ":",...
Method representing the process’s activity.
[ "Method", "representing", "the", "process’s", "activity", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/stream.py#L228-L270
train
dmlc/gluon-nlp
src/gluonnlp/model/block.py
RNNCellLayer.forward
def forward(self, inputs, states=None): # pylint: disable=arguments-differ """Defines the forward computation. Arguments can be either :py:class:`NDArray` or :py:class:`Symbol`.""" batch_size = inputs.shape[self._batch_axis] skip_states = states is None if skip_states: ...
python
def forward(self, inputs, states=None): # pylint: disable=arguments-differ """Defines the forward computation. Arguments can be either :py:class:`NDArray` or :py:class:`Symbol`.""" batch_size = inputs.shape[self._batch_axis] skip_states = states is None if skip_states: ...
[ "def", "forward", "(", "self", ",", "inputs", ",", "states", "=", "None", ")", ":", "# pylint: disable=arguments-differ", "batch_size", "=", "inputs", ".", "shape", "[", "self", ".", "_batch_axis", "]", "skip_states", "=", "states", "is", "None", "if", "skip...
Defines the forward computation. Arguments can be either :py:class:`NDArray` or :py:class:`Symbol`.
[ "Defines", "the", "forward", "computation", ".", "Arguments", "can", "be", "either", ":", "py", ":", "class", ":", "NDArray", "or", ":", "py", ":", "class", ":", "Symbol", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/block.py#L48-L69
train
dmlc/gluon-nlp
src/gluonnlp/model/train/embedding.py
CSREmbeddingModel.hybrid_forward
def hybrid_forward(self, F, words, weight): """Compute embedding of words in batch. Parameters ---------- words : mx.nd.NDArray Array of token indices. """ #pylint: disable=arguments-differ embeddings = F.sparse.dot(words, weight) return embe...
python
def hybrid_forward(self, F, words, weight): """Compute embedding of words in batch. Parameters ---------- words : mx.nd.NDArray Array of token indices. """ #pylint: disable=arguments-differ embeddings = F.sparse.dot(words, weight) return embe...
[ "def", "hybrid_forward", "(", "self", ",", "F", ",", "words", ",", "weight", ")", ":", "#pylint: disable=arguments-differ", "embeddings", "=", "F", ".", "sparse", ".", "dot", "(", "words", ",", "weight", ")", "return", "embeddings" ]
Compute embedding of words in batch. Parameters ---------- words : mx.nd.NDArray Array of token indices.
[ "Compute", "embedding", "of", "words", "in", "batch", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/train/embedding.py#L120-L131
train
dmlc/gluon-nlp
src/gluonnlp/model/train/embedding.py
FasttextEmbeddingModel.load_fasttext_format
def load_fasttext_format(cls, path, ctx=cpu(), **kwargs): """Create an instance of the class and load weights. Load the weights from the fastText binary format created by https://github.com/facebookresearch/fastText Parameters ---------- path : str Path to t...
python
def load_fasttext_format(cls, path, ctx=cpu(), **kwargs): """Create an instance of the class and load weights. Load the weights from the fastText binary format created by https://github.com/facebookresearch/fastText Parameters ---------- path : str Path to t...
[ "def", "load_fasttext_format", "(", "cls", ",", "path", ",", "ctx", "=", "cpu", "(", ")", ",", "*", "*", "kwargs", ")", ":", "with", "open", "(", "path", ",", "'rb'", ")", "as", "f", ":", "new_format", ",", "dim", ",", "bucket", ",", "minn", ",",...
Create an instance of the class and load weights. Load the weights from the fastText binary format created by https://github.com/facebookresearch/fastText Parameters ---------- path : str Path to the .bin model file. ctx : mx.Context, default mx.cpu() ...
[ "Create", "an", "instance", "of", "the", "class", "and", "load", "weights", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/train/embedding.py#L232-L280
train
dmlc/gluon-nlp
scripts/natural_language_inference/utils.py
logging_config
def logging_config(logpath=None, level=logging.DEBUG, console_level=logging.INFO, no_console=False): """ Config the logging. """ logger = logging.getLogger('nli') # Remove all the current handlers for handler in logger.handlers: lo...
python
def logging_config(logpath=None, level=logging.DEBUG, console_level=logging.INFO, no_console=False): """ Config the logging. """ logger = logging.getLogger('nli') # Remove all the current handlers for handler in logger.handlers: lo...
[ "def", "logging_config", "(", "logpath", "=", "None", ",", "level", "=", "logging", ".", "DEBUG", ",", "console_level", "=", "logging", ".", "INFO", ",", "no_console", "=", "False", ")", ":", "logger", "=", "logging", ".", "getLogger", "(", "'nli'", ")",...
Config the logging.
[ "Config", "the", "logging", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/natural_language_inference/utils.py#L27-L56
train
dmlc/gluon-nlp
scripts/word_embeddings/train_glove.py
parse_args
def parse_args(): """Parse command line arguments.""" parser = argparse.ArgumentParser( description='GloVe with GluonNLP', formatter_class=argparse.ArgumentDefaultsHelpFormatter) # Data options group = parser.add_argument_group('Data arguments') group.add_argument( 'cooccurr...
python
def parse_args(): """Parse command line arguments.""" parser = argparse.ArgumentParser( description='GloVe with GluonNLP', formatter_class=argparse.ArgumentDefaultsHelpFormatter) # Data options group = parser.add_argument_group('Data arguments') group.add_argument( 'cooccurr...
[ "def", "parse_args", "(", ")", ":", "parser", "=", "argparse", ".", "ArgumentParser", "(", "description", "=", "'GloVe with GluonNLP'", ",", "formatter_class", "=", "argparse", ".", "ArgumentDefaultsHelpFormatter", ")", "# Data options", "group", "=", "parser", ".",...
Parse command line arguments.
[ "Parse", "command", "line", "arguments", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/train_glove.py#L59-L127
train
dmlc/gluon-nlp
scripts/word_embeddings/train_glove.py
get_train_data
def get_train_data(args): """Helper function to get training data.""" counter = dict() with io.open(args.vocab, 'r', encoding='utf-8') as f: for line in f: token, count = line.split('\t') counter[token] = int(count) vocab = nlp.Vocab(counter, unknown_token=None, padding_t...
python
def get_train_data(args): """Helper function to get training data.""" counter = dict() with io.open(args.vocab, 'r', encoding='utf-8') as f: for line in f: token, count = line.split('\t') counter[token] = int(count) vocab = nlp.Vocab(counter, unknown_token=None, padding_t...
[ "def", "get_train_data", "(", "args", ")", ":", "counter", "=", "dict", "(", ")", "with", "io", ".", "open", "(", "args", ".", "vocab", ",", "'r'", ",", "encoding", "=", "'utf-8'", ")", "as", "f", ":", "for", "line", "in", "f", ":", "token", ",",...
Helper function to get training data.
[ "Helper", "function", "to", "get", "training", "data", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/train_glove.py#L130-L161
train
dmlc/gluon-nlp
scripts/word_embeddings/train_glove.py
train
def train(args): """Training helper.""" vocab, row, col, counts = get_train_data(args) model = GloVe(token_to_idx=vocab.token_to_idx, output_dim=args.emsize, dropout=args.dropout, x_max=args.x_max, alpha=args.alpha, weight_initializer=mx.init.Uniform(scale=1 / args.emsize...
python
def train(args): """Training helper.""" vocab, row, col, counts = get_train_data(args) model = GloVe(token_to_idx=vocab.token_to_idx, output_dim=args.emsize, dropout=args.dropout, x_max=args.x_max, alpha=args.alpha, weight_initializer=mx.init.Uniform(scale=1 / args.emsize...
[ "def", "train", "(", "args", ")", ":", "vocab", ",", "row", ",", "col", ",", "counts", "=", "get_train_data", "(", "args", ")", "model", "=", "GloVe", "(", "token_to_idx", "=", "vocab", ".", "token_to_idx", ",", "output_dim", "=", "args", ".", "emsize"...
Training helper.
[ "Training", "helper", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/train_glove.py#L273-L357
train
dmlc/gluon-nlp
scripts/word_embeddings/train_glove.py
log
def log(args, kwargs): """Log to a file.""" logfile = os.path.join(args.logdir, 'log.tsv') if 'log_created' not in globals(): if os.path.exists(logfile): logging.error('Logfile %s already exists.', logfile) sys.exit(1) global log_created log_created = sorte...
python
def log(args, kwargs): """Log to a file.""" logfile = os.path.join(args.logdir, 'log.tsv') if 'log_created' not in globals(): if os.path.exists(logfile): logging.error('Logfile %s already exists.', logfile) sys.exit(1) global log_created log_created = sorte...
[ "def", "log", "(", "args", ",", "kwargs", ")", ":", "logfile", "=", "os", ".", "path", ".", "join", "(", "args", ".", "logdir", ",", "'log.tsv'", ")", "if", "'log_created'", "not", "in", "globals", "(", ")", ":", "if", "os", ".", "path", ".", "ex...
Log to a file.
[ "Log", "to", "a", "file", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/train_glove.py#L396-L416
train
dmlc/gluon-nlp
scripts/word_embeddings/train_glove.py
GloVe.hybrid_forward
def hybrid_forward(self, F, row, col, counts): """Compute embedding of words in batch. Parameters ---------- row : mxnet.nd.NDArray or mxnet.sym.Symbol Array of token indices for source words. Shape (batch_size, ). row : mxnet.nd.NDArray or mxnet.sym.Symbol ...
python
def hybrid_forward(self, F, row, col, counts): """Compute embedding of words in batch. Parameters ---------- row : mxnet.nd.NDArray or mxnet.sym.Symbol Array of token indices for source words. Shape (batch_size, ). row : mxnet.nd.NDArray or mxnet.sym.Symbol ...
[ "def", "hybrid_forward", "(", "self", ",", "F", ",", "row", ",", "col", ",", "counts", ")", ":", "emb_in", "=", "self", ".", "source_embedding", "(", "row", ")", "emb_out", "=", "self", ".", "context_embedding", "(", "col", ")", "if", "self", ".", "_...
Compute embedding of words in batch. Parameters ---------- row : mxnet.nd.NDArray or mxnet.sym.Symbol Array of token indices for source words. Shape (batch_size, ). row : mxnet.nd.NDArray or mxnet.sym.Symbol Array of token indices for context words. Shape (batch_...
[ "Compute", "embedding", "of", "words", "in", "batch", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/word_embeddings/train_glove.py#L201-L235
train
dmlc/gluon-nlp
src/gluonnlp/metric/masked_accuracy.py
MaskedAccuracy.update
def update(self, labels, preds, masks=None): # pylint: disable=arguments-differ """Updates the internal evaluation result. Parameters ---------- labels : list of `NDArray` The labels of the data with class indices as values, one per sample. preds : list of `N...
python
def update(self, labels, preds, masks=None): # pylint: disable=arguments-differ """Updates the internal evaluation result. Parameters ---------- labels : list of `NDArray` The labels of the data with class indices as values, one per sample. preds : list of `N...
[ "def", "update", "(", "self", ",", "labels", ",", "preds", ",", "masks", "=", "None", ")", ":", "# pylint: disable=arguments-differ", "labels", ",", "preds", "=", "check_label_shapes", "(", "labels", ",", "preds", ",", "True", ")", "masks", "=", "[", "None...
Updates the internal evaluation result. Parameters ---------- labels : list of `NDArray` The labels of the data with class indices as values, one per sample. preds : list of `NDArray` Prediction values for samples. Each prediction value can either be the class in...
[ "Updates", "the", "internal", "evaluation", "result", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/metric/masked_accuracy.py#L232-L275
train
dmlc/gluon-nlp
scripts/natural_language_inference/decomposable_attention.py
NLIModel.hybrid_forward
def hybrid_forward(self, F, sentence1, sentence2): """ Predict the relation of two sentences. Parameters ---------- sentence1 : NDArray Shape (batch_size, length) sentence2 : NDArray Shape (batch_size, length) Returns ------- ...
python
def hybrid_forward(self, F, sentence1, sentence2): """ Predict the relation of two sentences. Parameters ---------- sentence1 : NDArray Shape (batch_size, length) sentence2 : NDArray Shape (batch_size, length) Returns ------- ...
[ "def", "hybrid_forward", "(", "self", ",", "F", ",", "sentence1", ",", "sentence2", ")", ":", "feature1", "=", "self", ".", "lin_proj", "(", "self", ".", "word_emb", "(", "sentence1", ")", ")", "feature2", "=", "self", ".", "lin_proj", "(", "self", "."...
Predict the relation of two sentences. Parameters ---------- sentence1 : NDArray Shape (batch_size, length) sentence2 : NDArray Shape (batch_size, length) Returns ------- pred : NDArray Shape (batch_size, num_classes). num_cla...
[ "Predict", "the", "relation", "of", "two", "sentences", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/natural_language_inference/decomposable_attention.py#L55-L78
train
dmlc/gluon-nlp
scripts/natural_language_inference/decomposable_attention.py
IntraSentenceAttention.hybrid_forward
def hybrid_forward(self, F, feature_a): """ Compute intra-sentence attention given embedded words. Parameters ---------- feature_a : NDArray Shape (batch_size, length, hidden_size) Returns ------- alpha : NDArray Shape (batch_size...
python
def hybrid_forward(self, F, feature_a): """ Compute intra-sentence attention given embedded words. Parameters ---------- feature_a : NDArray Shape (batch_size, length, hidden_size) Returns ------- alpha : NDArray Shape (batch_size...
[ "def", "hybrid_forward", "(", "self", ",", "F", ",", "feature_a", ")", ":", "tilde_a", "=", "self", ".", "intra_attn_emb", "(", "feature_a", ")", "e_matrix", "=", "F", ".", "batch_dot", "(", "tilde_a", ",", "tilde_a", ",", "transpose_b", "=", "True", ")"...
Compute intra-sentence attention given embedded words. Parameters ---------- feature_a : NDArray Shape (batch_size, length, hidden_size) Returns ------- alpha : NDArray Shape (batch_size, length, hidden_size)
[ "Compute", "intra", "-", "sentence", "attention", "given", "embedded", "words", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/natural_language_inference/decomposable_attention.py#L98-L115
train
dmlc/gluon-nlp
scripts/natural_language_inference/decomposable_attention.py
DecomposableAttention.hybrid_forward
def hybrid_forward(self, F, a, b): """ Forward of Decomposable Attention layer """ # a.shape = [B, L1, H] # b.shape = [B, L2, H] # extract features tilde_a = self.f(a) # shape = [B, L1, H] tilde_b = self.f(b) # shape = [B, L2, H] # attention ...
python
def hybrid_forward(self, F, a, b): """ Forward of Decomposable Attention layer """ # a.shape = [B, L1, H] # b.shape = [B, L2, H] # extract features tilde_a = self.f(a) # shape = [B, L1, H] tilde_b = self.f(b) # shape = [B, L2, H] # attention ...
[ "def", "hybrid_forward", "(", "self", ",", "F", ",", "a", ",", "b", ")", ":", "# a.shape = [B, L1, H]", "# b.shape = [B, L2, H]", "# extract features", "tilde_a", "=", "self", ".", "f", "(", "a", ")", "# shape = [B, L1, H]", "tilde_b", "=", "self", ".", "f", ...
Forward of Decomposable Attention layer
[ "Forward", "of", "Decomposable", "Attention", "layer" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/natural_language_inference/decomposable_attention.py#L144-L166
train
dmlc/gluon-nlp
src/gluonnlp/data/utils.py
count_tokens
def count_tokens(tokens, to_lower=False, counter=None): r"""Counts tokens in the specified string. For token_delim='(td)' and seq_delim='(sd)', a specified string of two sequences of tokens may look like:: (td)token1(td)token2(td)token3(td)(sd)(td)token4(td)token5(td)(sd) Parameters ----...
python
def count_tokens(tokens, to_lower=False, counter=None): r"""Counts tokens in the specified string. For token_delim='(td)' and seq_delim='(sd)', a specified string of two sequences of tokens may look like:: (td)token1(td)token2(td)token3(td)(sd)(td)token4(td)token5(td)(sd) Parameters ----...
[ "def", "count_tokens", "(", "tokens", ",", "to_lower", "=", "False", ",", "counter", "=", "None", ")", ":", "if", "to_lower", ":", "tokens", "=", "[", "t", ".", "lower", "(", ")", "for", "t", "in", "tokens", "]", "if", "counter", "is", "None", ":",...
r"""Counts tokens in the specified string. For token_delim='(td)' and seq_delim='(sd)', a specified string of two sequences of tokens may look like:: (td)token1(td)token2(td)token3(td)(sd)(td)token4(td)token5(td)(sd) Parameters ---------- tokens : list of str A source list of tok...
[ "r", "Counts", "tokens", "in", "the", "specified", "string", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/utils.py#L92-L133
train
dmlc/gluon-nlp
src/gluonnlp/data/utils.py
slice_sequence
def slice_sequence(sequence, length, pad_last=False, pad_val=C.PAD_TOKEN, overlap=0): """Slice a flat sequence of tokens into sequences tokens, with each inner sequence's length equal to the specified `length`, taking into account the requested sequence overlap. Parameters ---------- sequence :...
python
def slice_sequence(sequence, length, pad_last=False, pad_val=C.PAD_TOKEN, overlap=0): """Slice a flat sequence of tokens into sequences tokens, with each inner sequence's length equal to the specified `length`, taking into account the requested sequence overlap. Parameters ---------- sequence :...
[ "def", "slice_sequence", "(", "sequence", ",", "length", ",", "pad_last", "=", "False", ",", "pad_val", "=", "C", ".", "PAD_TOKEN", ",", "overlap", "=", "0", ")", ":", "if", "length", "<=", "overlap", ":", "raise", "ValueError", "(", "'length needs to be l...
Slice a flat sequence of tokens into sequences tokens, with each inner sequence's length equal to the specified `length`, taking into account the requested sequence overlap. Parameters ---------- sequence : list of object A flat list of tokens. length : int The length of each of...
[ "Slice", "a", "flat", "sequence", "of", "tokens", "into", "sequences", "tokens", "with", "each", "inner", "sequence", "s", "length", "equal", "to", "the", "specified", "length", "taking", "into", "account", "the", "requested", "sequence", "overlap", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/utils.py#L152-L187
train
dmlc/gluon-nlp
src/gluonnlp/data/utils.py
_slice_pad_length
def _slice_pad_length(num_items, length, overlap=0): """Calculate the padding length needed for sliced samples in order not to discard data. Parameters ---------- num_items : int Number of items in dataset before collating. length : int The length of each of the samples. overlap...
python
def _slice_pad_length(num_items, length, overlap=0): """Calculate the padding length needed for sliced samples in order not to discard data. Parameters ---------- num_items : int Number of items in dataset before collating. length : int The length of each of the samples. overlap...
[ "def", "_slice_pad_length", "(", "num_items", ",", "length", ",", "overlap", "=", "0", ")", ":", "if", "length", "<=", "overlap", ":", "raise", "ValueError", "(", "'length needs to be larger than overlap'", ")", "step", "=", "length", "-", "overlap", "span", "...
Calculate the padding length needed for sliced samples in order not to discard data. Parameters ---------- num_items : int Number of items in dataset before collating. length : int The length of each of the samples. overlap : int, default 0 The extra number of items in curre...
[ "Calculate", "the", "padding", "length", "needed", "for", "sliced", "samples", "in", "order", "not", "to", "discard", "data", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/utils.py#L190-L217
train
dmlc/gluon-nlp
src/gluonnlp/data/utils.py
train_valid_split
def train_valid_split(dataset, valid_ratio=0.05): """Split the dataset into training and validation sets. Parameters ---------- dataset : list A list of training samples. valid_ratio : float, default 0.05 Proportion of training samples to use for validation set range: [0, 1]...
python
def train_valid_split(dataset, valid_ratio=0.05): """Split the dataset into training and validation sets. Parameters ---------- dataset : list A list of training samples. valid_ratio : float, default 0.05 Proportion of training samples to use for validation set range: [0, 1]...
[ "def", "train_valid_split", "(", "dataset", ",", "valid_ratio", "=", "0.05", ")", ":", "if", "not", "0.0", "<=", "valid_ratio", "<=", "1.0", ":", "raise", "ValueError", "(", "'valid_ratio should be in [0, 1]'", ")", "num_train", "=", "len", "(", "dataset", ")"...
Split the dataset into training and validation sets. Parameters ---------- dataset : list A list of training samples. valid_ratio : float, default 0.05 Proportion of training samples to use for validation set range: [0, 1] Returns ------- train : SimpleDataset v...
[ "Split", "the", "dataset", "into", "training", "and", "validation", "sets", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/utils.py#L236-L262
train
dmlc/gluon-nlp
src/gluonnlp/data/utils.py
_load_pretrained_vocab
def _load_pretrained_vocab(name, root=os.path.join(get_home_dir(), 'models'), cls=None): """Load the accompanying vocabulary object for pre-trained model. Parameters ---------- name : str Name of the vocabulary, usually the name of the dataset. root : str, default '$MXNET_HOME/models' ...
python
def _load_pretrained_vocab(name, root=os.path.join(get_home_dir(), 'models'), cls=None): """Load the accompanying vocabulary object for pre-trained model. Parameters ---------- name : str Name of the vocabulary, usually the name of the dataset. root : str, default '$MXNET_HOME/models' ...
[ "def", "_load_pretrained_vocab", "(", "name", ",", "root", "=", "os", ".", "path", ".", "join", "(", "get_home_dir", "(", ")", ",", "'models'", ")", ",", "cls", "=", "None", ")", ":", "file_name", "=", "'{name}-{short_hash}'", ".", "format", "(", "name",...
Load the accompanying vocabulary object for pre-trained model. Parameters ---------- name : str Name of the vocabulary, usually the name of the dataset. root : str, default '$MXNET_HOME/models' Location for keeping the model parameters. MXNET_HOME defaults to '~/.mxnet'. cls...
[ "Load", "the", "accompanying", "vocabulary", "object", "for", "pre", "-", "trained", "model", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/utils.py#L271-L318
train
dmlc/gluon-nlp
src/gluonnlp/data/utils.py
_extract_archive
def _extract_archive(file, target_dir): """Extract archive file Parameters ---------- file : str Absolute path of the archive file. target_dir : str Target directory of the archive to be uncompressed """ if file.endswith('.gz') or file.endswith('.tar') or file.endswith('.tg...
python
def _extract_archive(file, target_dir): """Extract archive file Parameters ---------- file : str Absolute path of the archive file. target_dir : str Target directory of the archive to be uncompressed """ if file.endswith('.gz') or file.endswith('.tar') or file.endswith('.tg...
[ "def", "_extract_archive", "(", "file", ",", "target_dir", ")", ":", "if", "file", ".", "endswith", "(", "'.gz'", ")", "or", "file", ".", "endswith", "(", "'.tar'", ")", "or", "file", ".", "endswith", "(", "'.tgz'", ")", ":", "archive", "=", "tarfile",...
Extract archive file Parameters ---------- file : str Absolute path of the archive file. target_dir : str Target directory of the archive to be uncompressed
[ "Extract", "archive", "file" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/utils.py#L330-L348
train
dmlc/gluon-nlp
src/gluonnlp/data/utils.py
Counter.discard
def discard(self, min_freq, unknown_token): """Discards tokens with frequency below min_frequency and represents them as `unknown_token`. Parameters ---------- min_freq: int Tokens whose frequency is under min_freq is counted as `unknown_token` in the Cou...
python
def discard(self, min_freq, unknown_token): """Discards tokens with frequency below min_frequency and represents them as `unknown_token`. Parameters ---------- min_freq: int Tokens whose frequency is under min_freq is counted as `unknown_token` in the Cou...
[ "def", "discard", "(", "self", ",", "min_freq", ",", "unknown_token", ")", ":", "freq", "=", "0", "ret", "=", "Counter", "(", "{", "}", ")", "for", "token", ",", "count", "in", "self", ".", "items", "(", ")", ":", "if", "count", "<", "min_freq", ...
Discards tokens with frequency below min_frequency and represents them as `unknown_token`. Parameters ---------- min_freq: int Tokens whose frequency is under min_freq is counted as `unknown_token` in the Counter returned. unknown_token: str T...
[ "Discards", "tokens", "with", "frequency", "below", "min_frequency", "and", "represents", "them", "as", "unknown_token", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/data/utils.py#L45-L75
train
dmlc/gluon-nlp
scripts/machine_translation/train_transformer.py
train
def train(): """Training function.""" trainer = gluon.Trainer(model.collect_params(), args.optimizer, {'learning_rate': args.lr, 'beta2': 0.98, 'epsilon': 1e-9}) train_data_loader, val_data_loader, test_data_loader \ = dataprocessor.make_dataloader(data_train, data_val, ...
python
def train(): """Training function.""" trainer = gluon.Trainer(model.collect_params(), args.optimizer, {'learning_rate': args.lr, 'beta2': 0.98, 'epsilon': 1e-9}) train_data_loader, val_data_loader, test_data_loader \ = dataprocessor.make_dataloader(data_train, data_val, ...
[ "def", "train", "(", ")", ":", "trainer", "=", "gluon", ".", "Trainer", "(", "model", ".", "collect_params", "(", ")", ",", "args", ".", "optimizer", ",", "{", "'learning_rate'", ":", "args", ".", "lr", ",", "'beta2'", ":", "0.98", ",", "'epsilon'", ...
Training function.
[ "Training", "function", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/machine_translation/train_transformer.py#L262-L408
train
dmlc/gluon-nlp
src/gluonnlp/model/highway.py
Highway.hybrid_forward
def hybrid_forward(self, F, inputs, **kwargs): # pylint: disable=unused-argument r""" Forward computation for highway layer Parameters ---------- inputs: NDArray The input tensor is of shape `(..., input_size)`. Returns ---------- out...
python
def hybrid_forward(self, F, inputs, **kwargs): # pylint: disable=unused-argument r""" Forward computation for highway layer Parameters ---------- inputs: NDArray The input tensor is of shape `(..., input_size)`. Returns ---------- out...
[ "def", "hybrid_forward", "(", "self", ",", "F", ",", "inputs", ",", "*", "*", "kwargs", ")", ":", "# pylint: disable=unused-argument", "current_input", "=", "inputs", "for", "layer", "in", "self", ".", "hnet", ":", "projected_input", "=", "layer", "(", "curr...
r""" Forward computation for highway layer Parameters ---------- inputs: NDArray The input tensor is of shape `(..., input_size)`. Returns ---------- outputs: NDArray The output tensor is of the same shape with input tensor `(..., input_s...
[ "r", "Forward", "computation", "for", "highway", "layer" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/highway.py#L102-L126
train
dmlc/gluon-nlp
scripts/bert/bert_qa_model.py
BertForQA.forward
def forward(self, inputs, token_types, valid_length=None): # pylint: disable=arguments-differ """Generate the unnormalized score for the given the input sequences. Parameters ---------- inputs : NDArray, shape (batch_size, seq_length) Input words for the sequences. ...
python
def forward(self, inputs, token_types, valid_length=None): # pylint: disable=arguments-differ """Generate the unnormalized score for the given the input sequences. Parameters ---------- inputs : NDArray, shape (batch_size, seq_length) Input words for the sequences. ...
[ "def", "forward", "(", "self", ",", "inputs", ",", "token_types", ",", "valid_length", "=", "None", ")", ":", "# pylint: disable=arguments-differ", "bert_output", "=", "self", ".", "bert", "(", "inputs", ",", "token_types", ",", "valid_length", ")", "output", ...
Generate the unnormalized score for the given the input sequences. Parameters ---------- inputs : NDArray, shape (batch_size, seq_length) Input words for the sequences. token_types : NDArray, shape (batch_size, seq_length) Token types for the sequences, used to i...
[ "Generate", "the", "unnormalized", "score", "for", "the", "given", "the", "input", "sequences", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/bert_qa_model.py#L49-L69
train
dmlc/gluon-nlp
src/gluonnlp/model/bilm_encoder.py
BiLMEncoder.hybrid_forward
def hybrid_forward(self, F, inputs, states=None, mask=None): # pylint: disable=arguments-differ # pylint: disable=unused-argument """Defines the forward computation for cache cell. Arguments can be either :py:class:`NDArray` or :py:class:`Symbol`. Parameters ---------- ...
python
def hybrid_forward(self, F, inputs, states=None, mask=None): # pylint: disable=arguments-differ # pylint: disable=unused-argument """Defines the forward computation for cache cell. Arguments can be either :py:class:`NDArray` or :py:class:`Symbol`. Parameters ---------- ...
[ "def", "hybrid_forward", "(", "self", ",", "F", ",", "inputs", ",", "states", "=", "None", ",", "mask", "=", "None", ")", ":", "# pylint: disable=arguments-differ", "# pylint: disable=unused-argument", "states_forward", ",", "states_backward", "=", "states", "if", ...
Defines the forward computation for cache cell. Arguments can be either :py:class:`NDArray` or :py:class:`Symbol`. Parameters ---------- inputs : NDArray The input data layout='TNC'. states : Tuple[List[List[NDArray]]] The states. including: s...
[ "Defines", "the", "forward", "computation", "for", "cache", "cell", ".", "Arguments", "can", "be", "either", ":", "py", ":", "class", ":", "NDArray", "or", ":", "py", ":", "class", ":", "Symbol", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/src/gluonnlp/model/bilm_encoder.py#L132-L205
train
dmlc/gluon-nlp
scripts/natural_language_inference/preprocess.py
main
def main(args): """ Read tokens from the provided parse tree in the SNLI dataset. Illegal examples are removed. """ examples = [] with open(args.input, 'r') as fin: reader = csv.DictReader(fin, delimiter='\t') for cols in reader: s1 = read_tokens(cols['sentence1_parse...
python
def main(args): """ Read tokens from the provided parse tree in the SNLI dataset. Illegal examples are removed. """ examples = [] with open(args.input, 'r') as fin: reader = csv.DictReader(fin, delimiter='\t') for cols in reader: s1 = read_tokens(cols['sentence1_parse...
[ "def", "main", "(", "args", ")", ":", "examples", "=", "[", "]", "with", "open", "(", "args", ".", "input", ",", "'r'", ")", "as", "fin", ":", "reader", "=", "csv", ".", "DictReader", "(", "fin", ",", "delimiter", "=", "'\\t'", ")", "for", "cols"...
Read tokens from the provided parse tree in the SNLI dataset. Illegal examples are removed.
[ "Read", "tokens", "from", "the", "provided", "parse", "tree", "in", "the", "SNLI", "dataset", ".", "Illegal", "examples", "are", "removed", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/natural_language_inference/preprocess.py#L42-L58
train
dmlc/gluon-nlp
scripts/parsing/common/k_means.py
KMeans._recenter
def _recenter(self): """ one iteration of k-means """ for split_idx in range(len(self._splits)): split = self._splits[split_idx] len_idx = self._split2len_idx[split] if split == self._splits[-1]: continue right_split = self....
python
def _recenter(self): """ one iteration of k-means """ for split_idx in range(len(self._splits)): split = self._splits[split_idx] len_idx = self._split2len_idx[split] if split == self._splits[-1]: continue right_split = self....
[ "def", "_recenter", "(", "self", ")", ":", "for", "split_idx", "in", "range", "(", "len", "(", "self", ".", "_splits", ")", ")", ":", "split", "=", "self", ".", "_splits", "[", "split_idx", "]", "len_idx", "=", "self", ".", "_split2len_idx", "[", "sp...
one iteration of k-means
[ "one", "iteration", "of", "k", "-", "means" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/parsing/common/k_means.py#L108-L145
train
dmlc/gluon-nlp
scripts/parsing/common/k_means.py
KMeans._reindex
def _reindex(self): """ Index every sentence into a cluster """ self._len2split_idx = {} last_split = -1 for split_idx, split in enumerate(self._splits): self._len2split_idx.update( dict(list(zip(list(range(last_split + 1, split)), [split_idx] ...
python
def _reindex(self): """ Index every sentence into a cluster """ self._len2split_idx = {} last_split = -1 for split_idx, split in enumerate(self._splits): self._len2split_idx.update( dict(list(zip(list(range(last_split + 1, split)), [split_idx] ...
[ "def", "_reindex", "(", "self", ")", ":", "self", ".", "_len2split_idx", "=", "{", "}", "last_split", "=", "-", "1", "for", "split_idx", ",", "split", "in", "enumerate", "(", "self", ".", "_splits", ")", ":", "self", ".", "_len2split_idx", ".", "update...
Index every sentence into a cluster
[ "Index", "every", "sentence", "into", "a", "cluster" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/parsing/common/k_means.py#L147-L155
train
dmlc/gluon-nlp
scripts/machine_translation/gnmt.py
get_gnmt_encoder_decoder
def get_gnmt_encoder_decoder(cell_type='lstm', attention_cell='scaled_luong', num_layers=2, num_bi_layers=1, hidden_size=128, dropout=0.0, use_residual=False, i2h_weight_initializer=None, h2h_weight_initializer=None, i2h_bias_initial...
python
def get_gnmt_encoder_decoder(cell_type='lstm', attention_cell='scaled_luong', num_layers=2, num_bi_layers=1, hidden_size=128, dropout=0.0, use_residual=False, i2h_weight_initializer=None, h2h_weight_initializer=None, i2h_bias_initial...
[ "def", "get_gnmt_encoder_decoder", "(", "cell_type", "=", "'lstm'", ",", "attention_cell", "=", "'scaled_luong'", ",", "num_layers", "=", "2", ",", "num_bi_layers", "=", "1", ",", "hidden_size", "=", "128", ",", "dropout", "=", "0.0", ",", "use_residual", "=",...
Build a pair of GNMT encoder/decoder Parameters ---------- cell_type : str or type attention_cell : str or AttentionCell num_layers : int num_bi_layers : int hidden_size : int dropout : float use_residual : bool i2h_weight_initializer : mx.init.Initializer or None h2h_weight...
[ "Build", "a", "pair", "of", "GNMT", "encoder", "/", "decoder" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/machine_translation/gnmt.py#L407-L455
train
dmlc/gluon-nlp
scripts/machine_translation/gnmt.py
GNMTDecoder.init_state_from_encoder
def init_state_from_encoder(self, encoder_outputs, encoder_valid_length=None): """Initialize the state from the encoder outputs. Parameters ---------- encoder_outputs : list encoder_valid_length : NDArray or None Returns ------- decoder_states : list ...
python
def init_state_from_encoder(self, encoder_outputs, encoder_valid_length=None): """Initialize the state from the encoder outputs. Parameters ---------- encoder_outputs : list encoder_valid_length : NDArray or None Returns ------- decoder_states : list ...
[ "def", "init_state_from_encoder", "(", "self", ",", "encoder_outputs", ",", "encoder_valid_length", "=", "None", ")", ":", "mem_value", ",", "rnn_states", "=", "encoder_outputs", "batch_size", ",", "_", ",", "mem_size", "=", "mem_value", ".", "shape", "attention_v...
Initialize the state from the encoder outputs. Parameters ---------- encoder_outputs : list encoder_valid_length : NDArray or None Returns ------- decoder_states : list The decoder states, includes: - rnn_states : NDArray - a...
[ "Initialize", "the", "state", "from", "the", "encoder", "outputs", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/machine_translation/gnmt.py#L224-L252
train
dmlc/gluon-nlp
scripts/machine_translation/gnmt.py
GNMTDecoder.decode_seq
def decode_seq(self, inputs, states, valid_length=None): """Decode the decoder inputs. This function is only used for training. Parameters ---------- inputs : NDArray, Shape (batch_size, length, C_in) states : list of NDArrays or None Initial states. The list of init...
python
def decode_seq(self, inputs, states, valid_length=None): """Decode the decoder inputs. This function is only used for training. Parameters ---------- inputs : NDArray, Shape (batch_size, length, C_in) states : list of NDArrays or None Initial states. The list of init...
[ "def", "decode_seq", "(", "self", ",", "inputs", ",", "states", ",", "valid_length", "=", "None", ")", ":", "length", "=", "inputs", ".", "shape", "[", "1", "]", "output", "=", "[", "]", "additional_outputs", "=", "[", "]", "inputs", "=", "_as_list", ...
Decode the decoder inputs. This function is only used for training. Parameters ---------- inputs : NDArray, Shape (batch_size, length, C_in) states : list of NDArrays or None Initial states. The list of initial decoder states valid_length : NDArray or None ...
[ "Decode", "the", "decoder", "inputs", ".", "This", "function", "is", "only", "used", "for", "training", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/machine_translation/gnmt.py#L254-L304
train
dmlc/gluon-nlp
scripts/bert/create_pretraining_data.py
transform
def transform(instance, tokenizer, max_seq_length, max_predictions_per_seq, do_pad=True): """Transform instance to inputs for MLM and NSP.""" pad = tokenizer.convert_tokens_to_ids(['[PAD]'])[0] input_ids = tokenizer.convert_tokens_to_ids(instance.tokens) input_mask = [1] * len(input_ids) segment_ids...
python
def transform(instance, tokenizer, max_seq_length, max_predictions_per_seq, do_pad=True): """Transform instance to inputs for MLM and NSP.""" pad = tokenizer.convert_tokens_to_ids(['[PAD]'])[0] input_ids = tokenizer.convert_tokens_to_ids(instance.tokens) input_mask = [1] * len(input_ids) segment_ids...
[ "def", "transform", "(", "instance", ",", "tokenizer", ",", "max_seq_length", ",", "max_predictions_per_seq", ",", "do_pad", "=", "True", ")", ":", "pad", "=", "tokenizer", ".", "convert_tokens_to_ids", "(", "[", "'[PAD]'", "]", ")", "[", "0", "]", "input_id...
Transform instance to inputs for MLM and NSP.
[ "Transform", "instance", "to", "inputs", "for", "MLM", "and", "NSP", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/create_pretraining_data.py#L163-L208
train
dmlc/gluon-nlp
scripts/bert/create_pretraining_data.py
write_to_files_np
def write_to_files_np(features, tokenizer, max_seq_length, max_predictions_per_seq, output_files): # pylint: disable=unused-argument """Write to numpy files from `TrainingInstance`s.""" next_sentence_labels = [] valid_lengths = [] assert len(output_files) == 1, 'numpy format o...
python
def write_to_files_np(features, tokenizer, max_seq_length, max_predictions_per_seq, output_files): # pylint: disable=unused-argument """Write to numpy files from `TrainingInstance`s.""" next_sentence_labels = [] valid_lengths = [] assert len(output_files) == 1, 'numpy format o...
[ "def", "write_to_files_np", "(", "features", ",", "tokenizer", ",", "max_seq_length", ",", "max_predictions_per_seq", ",", "output_files", ")", ":", "# pylint: disable=unused-argument", "next_sentence_labels", "=", "[", "]", "valid_lengths", "=", "[", "]", "assert", "...
Write to numpy files from `TrainingInstance`s.
[ "Write", "to", "numpy", "files", "from", "TrainingInstance", "s", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/create_pretraining_data.py#L218-L242
train
dmlc/gluon-nlp
scripts/bert/create_pretraining_data.py
write_to_files_rec
def write_to_files_rec(instances, tokenizer, max_seq_length, max_predictions_per_seq, output_files): """Create IndexedRecordIO files from `TrainingInstance`s.""" writers = [] for output_file in output_files: writers.append( mx.recordio.MXIndexedRecordIO( ...
python
def write_to_files_rec(instances, tokenizer, max_seq_length, max_predictions_per_seq, output_files): """Create IndexedRecordIO files from `TrainingInstance`s.""" writers = [] for output_file in output_files: writers.append( mx.recordio.MXIndexedRecordIO( ...
[ "def", "write_to_files_rec", "(", "instances", ",", "tokenizer", ",", "max_seq_length", ",", "max_predictions_per_seq", ",", "output_files", ")", ":", "writers", "=", "[", "]", "for", "output_file", "in", "output_files", ":", "writers", ".", "append", "(", "mx",...
Create IndexedRecordIO files from `TrainingInstance`s.
[ "Create", "IndexedRecordIO", "files", "from", "TrainingInstance", "s", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/create_pretraining_data.py#L244-L266
train
dmlc/gluon-nlp
scripts/bert/create_pretraining_data.py
create_training_instances
def create_training_instances(x): """Create `TrainingInstance`s from raw text.""" (input_files, out, tokenizer, max_seq_length, dupe_factor, short_seq_prob, masked_lm_prob, max_predictions_per_seq, rng) = x time_start = time.time() logging.info('Processing %s', input_files) all_documents = [[]]...
python
def create_training_instances(x): """Create `TrainingInstance`s from raw text.""" (input_files, out, tokenizer, max_seq_length, dupe_factor, short_seq_prob, masked_lm_prob, max_predictions_per_seq, rng) = x time_start = time.time() logging.info('Processing %s', input_files) all_documents = [[]]...
[ "def", "create_training_instances", "(", "x", ")", ":", "(", "input_files", ",", "out", ",", "tokenizer", ",", "max_seq_length", ",", "dupe_factor", ",", "short_seq_prob", ",", "masked_lm_prob", ",", "max_predictions_per_seq", ",", "rng", ")", "=", "x", "time_st...
Create `TrainingInstance`s from raw text.
[ "Create", "TrainingInstance", "s", "from", "raw", "text", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/create_pretraining_data.py#L269-L351
train
dmlc/gluon-nlp
scripts/bert/create_pretraining_data.py
create_instances_from_document
def create_instances_from_document( all_documents, document_index, max_seq_length, short_seq_prob, masked_lm_prob, max_predictions_per_seq, vocab_words, rng): """Creates `TrainingInstance`s for a single document.""" document = all_documents[document_index] # Account for [CLS], [SEP], [SEP] ...
python
def create_instances_from_document( all_documents, document_index, max_seq_length, short_seq_prob, masked_lm_prob, max_predictions_per_seq, vocab_words, rng): """Creates `TrainingInstance`s for a single document.""" document = all_documents[document_index] # Account for [CLS], [SEP], [SEP] ...
[ "def", "create_instances_from_document", "(", "all_documents", ",", "document_index", ",", "max_seq_length", ",", "short_seq_prob", ",", "masked_lm_prob", ",", "max_predictions_per_seq", ",", "vocab_words", ",", "rng", ")", ":", "document", "=", "all_documents", "[", ...
Creates `TrainingInstance`s for a single document.
[ "Creates", "TrainingInstance", "s", "for", "a", "single", "document", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/create_pretraining_data.py#L354-L472
train
dmlc/gluon-nlp
scripts/bert/create_pretraining_data.py
create_masked_lm_predictions
def create_masked_lm_predictions(tokens, masked_lm_prob, max_predictions_per_seq, vocab_words, rng): """Creates the predictions for the masked LM objective.""" cand_indexes = [] for (i, token) in enumerate(tokens): if token in ['[CLS]', '[SEP]']: continu...
python
def create_masked_lm_predictions(tokens, masked_lm_prob, max_predictions_per_seq, vocab_words, rng): """Creates the predictions for the masked LM objective.""" cand_indexes = [] for (i, token) in enumerate(tokens): if token in ['[CLS]', '[SEP]']: continu...
[ "def", "create_masked_lm_predictions", "(", "tokens", ",", "masked_lm_prob", ",", "max_predictions_per_seq", ",", "vocab_words", ",", "rng", ")", ":", "cand_indexes", "=", "[", "]", "for", "(", "i", ",", "token", ")", "in", "enumerate", "(", "tokens", ")", "...
Creates the predictions for the masked LM objective.
[ "Creates", "the", "predictions", "for", "the", "masked", "LM", "objective", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/create_pretraining_data.py#L479-L530
train
dmlc/gluon-nlp
scripts/bert/create_pretraining_data.py
truncate_seq_pair
def truncate_seq_pair(tokens_a, tokens_b, max_num_tokens, rng): """Truncates a pair of sequences to a maximum sequence length.""" while True: total_length = len(tokens_a) + len(tokens_b) if total_length <= max_num_tokens: break trunc_tokens = tokens_a if len(tokens_a) > len(...
python
def truncate_seq_pair(tokens_a, tokens_b, max_num_tokens, rng): """Truncates a pair of sequences to a maximum sequence length.""" while True: total_length = len(tokens_a) + len(tokens_b) if total_length <= max_num_tokens: break trunc_tokens = tokens_a if len(tokens_a) > len(...
[ "def", "truncate_seq_pair", "(", "tokens_a", ",", "tokens_b", ",", "max_num_tokens", ",", "rng", ")", ":", "while", "True", ":", "total_length", "=", "len", "(", "tokens_a", ")", "+", "len", "(", "tokens_b", ")", "if", "total_length", "<=", "max_num_tokens",...
Truncates a pair of sequences to a maximum sequence length.
[ "Truncates", "a", "pair", "of", "sequences", "to", "a", "maximum", "sequence", "length", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/create_pretraining_data.py#L533-L548
train
dmlc/gluon-nlp
scripts/bert/create_pretraining_data.py
main
def main(): """Main function.""" time_start = time.time() logging.info('loading vocab file from dataset: %s', args.vocab) vocab_obj = nlp.data.utils._load_pretrained_vocab(args.vocab) tokenizer = BERTTokenizer( vocab=vocab_obj, lower='uncased' in args.vocab) input_files = [] for inp...
python
def main(): """Main function.""" time_start = time.time() logging.info('loading vocab file from dataset: %s', args.vocab) vocab_obj = nlp.data.utils._load_pretrained_vocab(args.vocab) tokenizer = BERTTokenizer( vocab=vocab_obj, lower='uncased' in args.vocab) input_files = [] for inp...
[ "def", "main", "(", ")", ":", "time_start", "=", "time", ".", "time", "(", ")", "logging", ".", "info", "(", "'loading vocab file from dataset: %s'", ",", "args", ".", "vocab", ")", "vocab_obj", "=", "nlp", ".", "data", ".", "utils", ".", "_load_pretrained...
Main function.
[ "Main", "function", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/create_pretraining_data.py#L551-L607
train
dmlc/gluon-nlp
scripts/bert/utils.py
convert_vocab
def convert_vocab(vocab_file): """GluonNLP specific code to convert the original vocabulary to nlp.vocab.BERTVocab.""" original_vocab = load_vocab(vocab_file) token_to_idx = dict(original_vocab) num_tokens = len(token_to_idx) idx_to_token = [None] * len(original_vocab) for word in original_vocab...
python
def convert_vocab(vocab_file): """GluonNLP specific code to convert the original vocabulary to nlp.vocab.BERTVocab.""" original_vocab = load_vocab(vocab_file) token_to_idx = dict(original_vocab) num_tokens = len(token_to_idx) idx_to_token = [None] * len(original_vocab) for word in original_vocab...
[ "def", "convert_vocab", "(", "vocab_file", ")", ":", "original_vocab", "=", "load_vocab", "(", "vocab_file", ")", "token_to_idx", "=", "dict", "(", "original_vocab", ")", "num_tokens", "=", "len", "(", "token_to_idx", ")", "idx_to_token", "=", "[", "None", "]"...
GluonNLP specific code to convert the original vocabulary to nlp.vocab.BERTVocab.
[ "GluonNLP", "specific", "code", "to", "convert", "the", "original", "vocabulary", "to", "nlp", ".", "vocab", ".", "BERTVocab", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/utils.py#L33-L83
train
dmlc/gluon-nlp
scripts/bert/utils.py
read_tf_checkpoint
def read_tf_checkpoint(path): """read tensorflow checkpoint""" from tensorflow.python import pywrap_tensorflow tensors = {} reader = pywrap_tensorflow.NewCheckpointReader(path) var_to_shape_map = reader.get_variable_to_shape_map() for key in sorted(var_to_shape_map): tensor = reader.get_...
python
def read_tf_checkpoint(path): """read tensorflow checkpoint""" from tensorflow.python import pywrap_tensorflow tensors = {} reader = pywrap_tensorflow.NewCheckpointReader(path) var_to_shape_map = reader.get_variable_to_shape_map() for key in sorted(var_to_shape_map): tensor = reader.get_...
[ "def", "read_tf_checkpoint", "(", "path", ")", ":", "from", "tensorflow", ".", "python", "import", "pywrap_tensorflow", "tensors", "=", "{", "}", "reader", "=", "pywrap_tensorflow", ".", "NewCheckpointReader", "(", "path", ")", "var_to_shape_map", "=", "reader", ...
read tensorflow checkpoint
[ "read", "tensorflow", "checkpoint" ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/utils.py#L97-L106
train
dmlc/gluon-nlp
scripts/bert/utils.py
profile
def profile(curr_step, start_step, end_step, profile_name='profile.json', early_exit=True): """profile the program between [start_step, end_step).""" if curr_step == start_step: mx.nd.waitall() mx.profiler.set_config(profile_memory=False, profile_symbolic=True, ...
python
def profile(curr_step, start_step, end_step, profile_name='profile.json', early_exit=True): """profile the program between [start_step, end_step).""" if curr_step == start_step: mx.nd.waitall() mx.profiler.set_config(profile_memory=False, profile_symbolic=True, ...
[ "def", "profile", "(", "curr_step", ",", "start_step", ",", "end_step", ",", "profile_name", "=", "'profile.json'", ",", "early_exit", "=", "True", ")", ":", "if", "curr_step", "==", "start_step", ":", "mx", ".", "nd", ".", "waitall", "(", ")", "mx", "."...
profile the program between [start_step, end_step).
[ "profile", "the", "program", "between", "[", "start_step", "end_step", ")", "." ]
4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba
https://github.com/dmlc/gluon-nlp/blob/4b83eb6bcc8881e5f1081a3675adaa19fac5c0ba/scripts/bert/utils.py#L108-L123
train