adding conversion script adding first draft of modeling & tokenization adding placeholder for test files bunch of changes registering the tokenizer/model/etc tests change link; something is very VERY wrong here weird end-of-word thingy going on i think the tokenization works now ; wrote the unit tests overall structure works;load w next the monster is alive! works after some cleanup as well adding emacs autosave to gitignore currently only supporting the 48 layer one; seems to infer fine on my macbook cleanup fixing some documentation fixing some documentation tests passing? now works on CUDA also adding greedy? adding greedy sampling works well
388 lines
17 KiB
Python
388 lines
17 KiB
Python
# coding=utf-8
|
|
# Copyright 2018 Salesforce and HuggingFace Inc. team.
|
|
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
"""PyTorch CTRL model."""
|
|
|
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
|
|
import collections
|
|
import json
|
|
import logging
|
|
import math
|
|
import os
|
|
import sys
|
|
from io import open
|
|
import numpy as np
|
|
import torch
|
|
import torch.nn as nn
|
|
import pdb
|
|
from torch.nn import CrossEntropyLoss
|
|
from torch.nn.parameter import Parameter
|
|
|
|
from .modeling_utils import PreTrainedModel, Conv1D, prune_conv1d_layer, SequenceSummary
|
|
from .configuration_ctrl import CTRLConfig
|
|
from .file_utils import add_start_docstrings
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
CTRL_PRETRAINED_MODEL_ARCHIVE_MAP = {"ctrl": "https://storage.googleapis.com/sf-ctrl/pytorch/seqlen256_v1.bin"}
|
|
|
|
|
|
def angle_defn(pos, i, d_model_size):
|
|
angle_rates = 1 / torch.pow(10000, (2 * (i//2)) / d_model_size)
|
|
return pos * angle_rates
|
|
|
|
def positional_encoding(position, d_model_size, dtype):
|
|
# create the sinusoidal pattern for the positional encoding
|
|
angle_rads = (angle_defn(torch.arange(position, dtype=dtype).unsqueeze(1), torch.arange(d_model_size, dtype=dtype).unsqueeze(0), d_model_size))
|
|
|
|
sines = torch.sin(angle_rads[:, 0::2])
|
|
cosines = torch.cos(angle_rads[:, 1::2])
|
|
|
|
pos_encoding = torch.cat([sines, cosines], dim=-1).unsqueeze(0)
|
|
return pos_encoding
|
|
|
|
def scaled_dot_product_attention(q, k, v, mask):
|
|
# calculate attention
|
|
matmul_qk = torch.matmul(q, k.permute(0,1,3,2))
|
|
|
|
dk = k.shape[-1]
|
|
scaled_attention_logits = matmul_qk / np.sqrt(dk)
|
|
|
|
if mask is not None:
|
|
scaled_attention_logits += (mask * -1e4)
|
|
|
|
attention_weights = torch.softmax(scaled_attention_logits, dim=-1)
|
|
output = torch.matmul(attention_weights, v)
|
|
|
|
return output, attention_weights
|
|
|
|
|
|
class MultiHeadAttention(torch.nn.Module):
|
|
def __init__(self, d_model_size, num_heads):
|
|
super(MultiHeadAttention, self).__init__()
|
|
self.num_heads = num_heads
|
|
self.d_model_size = d_model_size
|
|
|
|
self.depth = int(d_model_size / self.num_heads)
|
|
|
|
self.Wq = torch.nn.Linear(d_model_size, d_model_size)
|
|
self.Wk = torch.nn.Linear(d_model_size, d_model_size)
|
|
self.Wv = torch.nn.Linear(d_model_size, d_model_size)
|
|
|
|
self.dense = torch.nn.Linear(d_model_size, d_model_size)
|
|
|
|
def split_into_heads(self, x, batch_size):
|
|
x = x.reshape(batch_size, -1, self.num_heads, self.depth)
|
|
return x.permute([0, 2, 1, 3])
|
|
|
|
def forward(self, v, k, q, mask):
|
|
batch_size = q.shape[0]
|
|
|
|
q = self.Wq(q)
|
|
k = self.Wk(k)
|
|
v = self.Wv(v)
|
|
|
|
q = self.split_into_heads(q, batch_size)
|
|
k = self.split_into_heads(k, batch_size)
|
|
v = self.split_into_heads(v, batch_size)
|
|
output = scaled_dot_product_attention(q, k, v, mask)
|
|
scaled_attention = output[0].permute([0, 2, 1, 3])
|
|
attn = output[1]
|
|
original_size_attention = scaled_attention.reshape(batch_size, -1, self.d_model_size)
|
|
output = self.dense(original_size_attention)
|
|
|
|
return output, attn
|
|
|
|
|
|
|
|
def point_wise_feed_forward_network(d_model_size, dff):
|
|
return torch.nn.Sequential(torch.nn.Linear(d_model_size, dff), torch.nn.ReLU(), torch.nn.Linear(dff, d_model_size))
|
|
|
|
|
|
class EncoderLayer(torch.nn.Module):
|
|
def __init__(self, d_model_size, num_heads, dff, rate=0.1):
|
|
super(EncoderLayer, self).__init__()
|
|
|
|
self.multi_head_attention = MultiHeadAttention(d_model_size, num_heads)
|
|
self.ffn = point_wise_feed_forward_network(d_model_size, dff)
|
|
|
|
self.layernorm1 = torch.nn.LayerNorm(d_model_size, eps=1e-6)
|
|
self.layernorm2 = torch.nn.LayerNorm(d_model_size, eps=1e-6)
|
|
|
|
self.dropout1 = torch.nn.Dropout(rate)
|
|
self.dropout2 = torch.nn.Dropout(rate)
|
|
|
|
def forward(self, x, mask):
|
|
normed = self.layernorm1(x)
|
|
attn_output, attn = self.multi_head_attention(normed, normed, normed, mask)
|
|
attn_output = self.dropout1(attn_output)
|
|
out1 = x + attn_output
|
|
|
|
out2 = self.layernorm2(out1)
|
|
ffn_output = self.ffn(out2)
|
|
ffn_output = self.dropout2(ffn_output)
|
|
out2 = out1 + ffn_output
|
|
|
|
return out2, attn
|
|
|
|
|
|
class CTRLPreTrainedModel(PreTrainedModel):
|
|
""" An abstract class to handle weights initialization and
|
|
a simple interface for dowloading and loading pretrained models.
|
|
"""
|
|
config_class = CTRLConfig
|
|
pretrained_model_archive_map = CTRL_PRETRAINED_MODEL_ARCHIVE_MAP
|
|
base_model_prefix = "transformer"
|
|
|
|
def __init__(self, *inputs, **kwargs):
|
|
super(CTRLPreTrainedModel, self).__init__(*inputs, **kwargs)
|
|
|
|
def _init_weights(self, module):
|
|
""" Initialize the weights.
|
|
"""
|
|
if isinstance(module, (nn.Linear, nn.Embedding, Conv1D)):
|
|
# Slightly different from the TF version which uses truncated_normal for initialization
|
|
# cf https://github.com/pytorch/pytorch/pull/5617
|
|
module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
|
|
if isinstance(module, (nn.Linear, Conv1D)) and module.bias is not None:
|
|
module.bias.data.zero_()
|
|
elif isinstance(module, nn.LayerNorm):
|
|
module.bias.data.zero_()
|
|
module.weight.data.fill_(1.0)
|
|
|
|
|
|
CTRL_START_DOCSTRING = r""" CTRL model was proposed in
|
|
`CTRL: A Conditional Transformer Language Model for Controllable Generation`_
|
|
by Nitish Shirish Keskar*, Bryan McCann*, Lav R. Varshney, Caiming Xiong and Richard Socher.
|
|
It's a causal (unidirectional) transformer pre-trained using language modeling on a very large
|
|
corpus of ~140 GB of text data with the first token reserved as a control code (such as Links, Books, Wikipedia etc.).
|
|
|
|
This model is a PyTorch `torch.nn.Module`_ sub-class. Use it as a regular PyTorch Module and
|
|
refer to the PyTorch documentation for all matter related to general usage and behavior.
|
|
|
|
.. _`CTRL: A Conditional Transformer Language Model for Controllable Generation`:
|
|
https://www.github.com/salesforce/ctrl
|
|
|
|
.. _`torch.nn.Module`:
|
|
https://pytorch.org/docs/stable/nn.html#module
|
|
|
|
Parameters:
|
|
config (:class:`~transformers.CTRLConfig`): Model configuration class with all the parameters of the model.
|
|
Initializing with a config file does not load the weights associated with the model, only the configuration.
|
|
Check out the :meth:`~transformers.PreTrainedModel.from_pretrained` method to load the model weights.
|
|
"""
|
|
|
|
CTRL_INPUTS_DOCSTRING = r""" Inputs:
|
|
**input_ids**: ``torch.LongTensor`` of shape ``(batch_size, sequence_length)``:
|
|
Indices of input sequence tokens in the vocabulary.
|
|
CTRL is a model with absolute position embeddings so it's usually advised to pad the inputs on
|
|
the right rather than the left.
|
|
Indices can be obtained using :class:`transformers.CTRLTokenizer`.
|
|
See :func:`transformers.PreTrainedTokenizer.encode` and
|
|
:func:`transformers.PreTrainedTokenizer.convert_tokens_to_ids` for details.
|
|
**past**:
|
|
list of ``torch.FloatTensor`` (one for each layer):
|
|
that contains pre-computed hidden-states (key and values in the attention blocks) as computed by the model
|
|
(see `past` output below). Can be used to speed up sequential decoding.
|
|
**attention_mask**: (`optional`) ``torch.FloatTensor`` of shape ``(batch_size, sequence_length)``:
|
|
Mask to avoid performing attention on padding token indices.
|
|
Mask values selected in ``[0, 1]``:
|
|
``1`` for tokens that are NOT MASKED, ``0`` for MASKED tokens.
|
|
**token_type_ids**: (`optional`) ``torch.LongTensor`` of shape ``(batch_size, sequence_length)``:
|
|
A parallel sequence of tokens (can be used to indicate various portions of the inputs).
|
|
The embeddings from these tokens will be summed with the respective token embeddings.
|
|
Indices are selected in the vocabulary (unlike BERT which has a specific vocabulary for segment indices).
|
|
**position_ids**: (`optional`) ``torch.LongTensor`` of shape ``(batch_size, sequence_length)``:
|
|
Indices of positions of each input sequence tokens in the position embeddings.
|
|
Selected in the range ``[0, config.max_position_embeddings - 1]``.
|
|
**head_mask**: (`optional`) ``torch.FloatTensor`` of shape ``(num_heads,)`` or ``(num_layers, num_heads)``:
|
|
Mask to nullify selected heads of the self-attention modules.
|
|
Mask values selected in ``[0, 1]``:
|
|
``1`` indicates the head is **not masked**, ``0`` indicates the head is **masked**.
|
|
"""
|
|
|
|
@add_start_docstrings("The bare CTRL Model transformer outputting raw hidden-states without any specific head on top.",
|
|
CTRL_START_DOCSTRING, CTRL_INPUTS_DOCSTRING)
|
|
class CTRLModel(CTRLPreTrainedModel):
|
|
r"""
|
|
Outputs: `Tuple` comprising various elements depending on the configuration (config) and inputs:
|
|
**last_hidden_state**: ``torch.FloatTensor`` of shape ``(batch_size, sequence_length, hidden_size)``
|
|
Sequence of hidden-states at the last layer of the model.
|
|
**past**:
|
|
list of ``torch.FloatTensor`` (one for each layer) of shape ``(batch_size, num_heads, sequence_length, sequence_length)``:
|
|
that contains pre-computed hidden-states (key and values in the attention blocks).
|
|
Can be used (see `past` input) to speed up sequential decoding.
|
|
**hidden_states**: (`optional`, returned when ``config.output_hidden_states=True``)
|
|
list of ``torch.FloatTensor`` (one for the output of each layer + the output of the embeddings)
|
|
of shape ``(batch_size, sequence_length, hidden_size)``:
|
|
Hidden-states of the model at the output of each layer plus the initial embedding outputs.
|
|
**attentions**: (`optional`, returned when ``config.output_attentions=True``)
|
|
list of ``torch.FloatTensor`` (one for each layer) of shape ``(batch_size, num_heads, sequence_length, sequence_length)``:
|
|
Attentions weights after the attention softmax, used to compute the weighted average in the self-attention heads.
|
|
|
|
Examples::
|
|
|
|
tokenizer = CTRLTokenizer.from_pretrained('ctrl')
|
|
model = CTRLModel.from_pretrained('ctrl')
|
|
input_ids = torch.tensor(tokenizer.encode("Links Hello, my dog is cute")).unsqueeze(0) # Batch size 1
|
|
outputs = model(input_ids)
|
|
last_hidden_states = outputs[0] # The last hidden-state is the first element of the output tuple
|
|
|
|
"""
|
|
def __init__(self, config):
|
|
super(CTRLModel, self).__init__(config)
|
|
self.output_hidden_states = config.output_hidden_states
|
|
self.d_model_size = config.n_embd
|
|
self.num_layers = config.n_layer
|
|
|
|
self.pos_encoding = positional_encoding(config.n_positions, self.d_model_size, torch.float)
|
|
|
|
self.output_attentions = config.output_attentions
|
|
|
|
self.w = nn.Embedding(config.vocab_size, config.n_embd)
|
|
|
|
|
|
self.dropout = nn.Dropout(config.embd_pdrop)
|
|
self.h = nn.ModuleList([EncoderLayer(config.n_embd, config.n_head, config.dff, config.resid_pdrop) for _ in range(config.n_layer)])
|
|
self.layernorm = nn.LayerNorm(config.n_embd, eps=config.layer_norm_epsilon)
|
|
|
|
self.init_weights()
|
|
|
|
def _resize_token_embeddings(self, new_num_tokens):
|
|
self.w = self._get_resized_embeddings(self.w, new_num_tokens)
|
|
return self.w
|
|
|
|
def _prune_heads(self, heads_to_prune):
|
|
""" Prunes heads of the model.
|
|
heads_to_prune: dict of {layer_num: list of heads to prune in this layer}
|
|
"""
|
|
for layer, heads in heads_to_prune.items():
|
|
self.h[layer].attn.prune_heads(heads)
|
|
|
|
def forward(self, input_ids, past=None, attention_mask=None, token_type_ids=None, position_ids=None, head_mask=None,
|
|
labels=None):
|
|
|
|
embedded = self.w(input_ids)
|
|
x = embedded.unsqueeze(0) if len(input_ids.shape)<2 else embedded
|
|
seq_len = input_ids.shape[1]
|
|
mask = torch.triu(torch.ones(seq_len, seq_len), 1).to(x.device)
|
|
|
|
x *= np.sqrt(self.d_model_size)
|
|
|
|
x += self.pos_encoding[:, :seq_len, :].to(x.device)
|
|
|
|
x = self.dropout(x)
|
|
all_hidden_states = ()
|
|
all_attentions = []
|
|
for i in range(self.num_layers):
|
|
if self.output_hidden_states:
|
|
all_hidden_states = all_hidden_states + (x,)
|
|
x, attn = self.h[i](x, mask)
|
|
if self.output_attentions:
|
|
all_attentions.append(attn)
|
|
|
|
x = self.layernorm(x)
|
|
if self.output_hidden_states:
|
|
all_hidden_states = all_hidden_states + (x,)
|
|
|
|
outputs = (x, None)
|
|
if self.output_hidden_states:
|
|
outputs = outputs + (all_hidden_states,)
|
|
if self.output_attentions:
|
|
outputs = outputs + (all_attentions,)
|
|
return outputs
|
|
|
|
|
|
@add_start_docstrings("""The CTRL Model transformer with a language modeling head on top
|
|
(linear layer with weights tied to the input embeddings). """, CTRL_START_DOCSTRING, CTRL_INPUTS_DOCSTRING)
|
|
class CTRLLMHeadModel(CTRLPreTrainedModel):
|
|
r"""
|
|
**labels**: (`optional`) ``torch.LongTensor`` of shape ``(batch_size, sequence_length)``:
|
|
Labels for language modeling.
|
|
Note that the labels **are shifted** inside the model, i.e. you can set ``lm_labels = input_ids``
|
|
Indices are selected in ``[-1, 0, ..., config.vocab_size]``
|
|
All labels set to ``-1`` are ignored (masked), the loss is only
|
|
computed for labels in ``[0, ..., config.vocab_size]``
|
|
|
|
Outputs: `Tuple` comprising various elements depending on the configuration (config) and inputs:
|
|
**loss**: (`optional`, returned when ``labels`` is provided) ``torch.FloatTensor`` of shape ``(1,)``:
|
|
Language modeling loss.
|
|
**prediction_scores**: ``torch.FloatTensor`` of shape ``(batch_size, sequence_length, config.vocab_size)``
|
|
Prediction scores of the language modeling head (scores for each vocabulary token before SoftMax).
|
|
**past**:
|
|
list of ``torch.FloatTensor`` (one for each layer) of shape ``(batch_size, num_heads, sequence_length, sequence_length)``:
|
|
that contains pre-computed hidden-states (key and values in the attention blocks).
|
|
Can be used (see `past` input) to speed up sequential decoding.
|
|
**hidden_states**: (`optional`, returned when ``config.output_hidden_states=True``)
|
|
list of ``torch.FloatTensor`` (one for the output of each layer + the output of the embeddings)
|
|
of shape ``(batch_size, sequence_length, hidden_size)``:
|
|
Hidden-states of the model at the output of each layer plus the initial embedding outputs.
|
|
**attentions**: (`optional`, returned when ``config.output_attentions=True``)
|
|
list of ``torch.FloatTensor`` (one for each layer) of shape ``(batch_size, num_heads, sequence_length, sequence_length)``:
|
|
Attentions weights after the attention softmax, used to compute the weighted average in the self-attention heads.
|
|
|
|
Examples::
|
|
|
|
import torch
|
|
from transformers import CTRLTokenizer, CTRLLMHeadModel
|
|
|
|
tokenizer = CTRLTokenizer.from_pretrained('ctrl')
|
|
model = CTRLLMHeadModel.from_pretrained('ctrl')
|
|
|
|
input_ids = torch.tensor(tokenizer.encode("Links Hello, my dog is cute")).unsqueeze(0) # Batch size 1
|
|
outputs = model(input_ids, labels=input_ids)
|
|
loss, logits = outputs[:2]
|
|
|
|
"""
|
|
def __init__(self, config):
|
|
super(CTRLLMHeadModel, self).__init__(config)
|
|
self.transformer = CTRLModel(config)
|
|
self.lm_head = nn.Linear(config.n_embd, config.vocab_size, bias=True)
|
|
|
|
self.init_weights()
|
|
self.tie_weights()
|
|
|
|
def tie_weights(self):
|
|
""" Make sure we are sharing the input and output embeddings.
|
|
Export to TorchScript can't handle parameter sharing so we are cloning them instead.
|
|
"""
|
|
self._tie_or_clone_weights(self.lm_head,
|
|
self.transformer.w)
|
|
#self._tie_or_clone_weights(self.lm_head.bias,
|
|
# self.transformer.w.bias)
|
|
def forward(self, input_ids, past=None, attention_mask=None, token_type_ids=None, position_ids=None, head_mask=None,
|
|
labels=None):
|
|
transformer_outputs = self.transformer(input_ids)
|
|
hidden_states = transformer_outputs[0]
|
|
|
|
lm_logits = self.lm_head(hidden_states)
|
|
|
|
outputs = (lm_logits,) + transformer_outputs[1:]
|
|
|
|
if labels is not None:
|
|
# Shift so that tokens < n predict n
|
|
shift_logits = lm_logits[..., :-1, :].contiguous()
|
|
shift_labels = labels[..., 1:].contiguous()
|
|
# Flatten the tokens
|
|
loss_fct = CrossEntropyLoss(ignore_index=-1)
|
|
loss = loss_fct(shift_logits.view(-1, shift_logits.size(-1)),
|
|
shift_labels.view(-1))
|
|
outputs = (loss,) + outputs
|
|
|
|
return outputs # (loss), lm_logits, presents, (all hidden_states), (attentions)
|
|
|
|
|