1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
// Copyright 2018-2020 The HuggingFace Inc. team. // Copyright 2020 Marian Team Authors // Copyright 2019-2020 Guillaume Becquin // 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. use crate::bart::{BartConfig, BartModel, LayerState}; use crate::pipelines::generation::{Cache, LMHeadModel}; use std::borrow::Borrow; use tch::nn::Init; use tch::{nn, Tensor}; /// # Marian Pretrained model weight files pub struct MarianModelResources; /// # Marian Pretrained model config files pub struct MarianConfigResources; /// # Marian Pretrained model vocab files pub struct MarianVocabResources; /// # Marian Pretrained sentence piece model files pub struct MarianSpmResources; /// # Marian optional prefixes pub struct MarianPrefix; impl MarianModelResources { /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. Modified with conversion to C-array format. pub const ENGLISH2ROMANCE: (&'static str, &'static str) = ( "marian-mt-en-ROMANCE/model.ot", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-ROMANCE/rust_model.ot", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. Modified with conversion to C-array format. pub const ROMANCE2ENGLISH: (&'static str, &'static str) = ( "marian-mt-ROMANCE-en/model.ot", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-ROMANCE-en/rust_model.ot", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. Modified with conversion to C-array format. pub const ENGLISH2GERMAN: (&'static str, &'static str) = ( "marian-mt-en-de/model.ot", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-de/rust_model.ot", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. Modified with conversion to C-array format. pub const GERMAN2ENGLISH: (&'static str, &'static str) = ( "marian-mt-de-en/model.ot", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-de-en/rust_model.ot", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. Modified with conversion to C-array format. pub const ENGLISH2RUSSIAN: (&'static str, &'static str) = ( "marian-mt-en-ru/model.ot", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-ru/rust_model.ot", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. Modified with conversion to C-array format. pub const RUSSIAN2ENGLISH: (&'static str, &'static str) = ( "marian-mt-ru-en/model.ot", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-ru-en/rust_model.ot", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. Modified with conversion to C-array format. pub const FRENCH2GERMAN: (&'static str, &'static str) = ( "marian-mt-fr-de/model.ot", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-fr-de/rust_model.ot", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. Modified with conversion to C-array format. pub const GERMAN2FRENCH: (&'static str, &'static str) = ( "marian-mt-de-fr/model.ot", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-de-fr/rust_model.ot", ); } impl MarianConfigResources { /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ENGLISH2ROMANCE: (&'static str, &'static str) = ( "marian-mt-en-ROMANCE/config.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-ROMANCE/config.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ROMANCE2ENGLISH: (&'static str, &'static str) = ( "marian-mt-ROMANCE-en/config.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-ROMANCE-en/config.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ENGLISH2GERMAN: (&'static str, &'static str) = ( "marian-mt-en-de/config.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-de/config.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const GERMAN2ENGLISH: (&'static str, &'static str) = ( "marian-mt-de-en/config.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-de-en/config.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ENGLISH2RUSSIAN: (&'static str, &'static str) = ( "marian-mt-en-ru/config.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-ru/config.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const RUSSIAN2ENGLISH: (&'static str, &'static str) = ( "marian-mt-ru-en/config.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-ru-en/config.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const FRENCH2GERMAN: (&'static str, &'static str) = ( "marian-mt-fr-de/config.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-fr-de/config.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const GERMAN2FRENCH: (&'static str, &'static str) = ( "marian-mt-de-fr/config.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-de-fr/config.json", ); } impl MarianVocabResources { /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ENGLISH2ROMANCE: (&'static str, &'static str) = ( "marian-mt-en-ROMANCE/vocab.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-ROMANCE/vocab.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ROMANCE2ENGLISH: (&'static str, &'static str) = ( "marian-mt-ROMANCE-en/vocab.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-ROMANCE-en/vocab.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ENGLISH2GERMAN: (&'static str, &'static str) = ( "marian-mt-en-de/vocab.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-de/vocab.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const GERMAN2ENGLISH: (&'static str, &'static str) = ( "marian-mt-de-en/vocab.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-de-en/vocab.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ENGLISH2RUSSIAN: (&'static str, &'static str) = ( "marian-mt-en-ru/vocab.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-ru/vocab.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const RUSSIAN2ENGLISH: (&'static str, &'static str) = ( "marian-mt-ru-en/vocab.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-ru-en/vocab.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const FRENCH2GERMAN: (&'static str, &'static str) = ( "marian-mt-fr-de/vocab.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-fr-de/vocab.json", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const GERMAN2FRENCH: (&'static str, &'static str) = ( "marian-mt-de-fr/vocab.json", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-de-fr/vocab.json", ); } impl MarianSpmResources { /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ENGLISH2ROMANCE: (&'static str, &'static str) = ( "marian-mt-en-ROMANCE/spiece.model", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-ROMANCE/source.spm", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ROMANCE2ENGLISH: (&'static str, &'static str) = ( "marian-mt-ROMANCE-en/spiece.model", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-ROMANCE-en/source.spm", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ENGLISH2GERMAN: (&'static str, &'static str) = ( "marian-mt-en-de/spiece.model", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-de/source.spm", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const GERMAN2ENGLISH: (&'static str, &'static str) = ( "marian-mt-de-en/spiece.model", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-de-en/source.spm", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const ENGLISH2RUSSIAN: (&'static str, &'static str) = ( "marian-mt-en-ru/spiece.model", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-en-ru/source.spm", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const RUSSIAN2ENGLISH: (&'static str, &'static str) = ( "marian-mt-ru-en/spiece.model", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-ru-en/source.spm", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const FRENCH2GERMAN: (&'static str, &'static str) = ( "marian-mt-fr-de/spiece.model", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-fr-de/source.spm", ); /// Shared under Creative Commons Attribution 4.0 International License license by the Opus-MT team from Language Technology at the University of Helsinki at https://github.com/Helsinki-NLP/Opus-MT. pub const GERMAN2FRENCH: (&'static str, &'static str) = ( "marian-mt-de-fr/spiece.model", "https://cdn.huggingface.co/Helsinki-NLP/opus-mt-de-fr/source.spm", ); } impl MarianPrefix { pub const ENGLISH2FRENCH: Option<&'static str> = Some(">>fr<<"); pub const ENGLISH2CATALAN: Option<&'static str> = Some(">>ca<<"); pub const ENGLISH2SPANISH: Option<&'static str> = Some(">>es<<"); pub const ENGLISH2PORTUGUESE: Option<&'static str> = Some(">>pt<<"); pub const ENGLISH2ITALIAN: Option<&'static str> = Some(">>it<<"); pub const ENGLISH2ROMANIAN: Option<&'static str> = Some(">>ro<<"); pub const ENGLISH2GERMAN: Option<&'static str> = None; pub const ENGLISH2RUSSIAN: Option<&'static str> = None; pub const FRENCH2ENGLISH: Option<&'static str> = None; pub const CATALAN2ENGLISH: Option<&'static str> = None; pub const SPANISH2ENGLISH: Option<&'static str> = None; pub const PORTUGUESE2ENGLISH: Option<&'static str> = None; pub const ITALIAN2ENGLISH: Option<&'static str> = None; pub const ROMANIAN2ENGLISH: Option<&'static str> = None; pub const GERMAN2ENGLISH: Option<&'static str> = None; pub const RUSSIAN2ENGLISH: Option<&'static str> = None; pub const FRENCH2GERMAN: Option<&'static str> = None; pub const GERMAN2FRENCH: Option<&'static str> = None; } /// # Marian Model for conditional generation /// Marian model with a vocabulary decoding head /// It is made of the following blocks: /// - `base_model`: `BartModel` Base BART model /// - `linear`: Linear layer with bias tied to the weights of the token id embeddings pub struct MarianForConditionalGeneration { base_model: BartModel, final_logits_bias: Tensor, } impl MarianForConditionalGeneration { /// Build a new `MarianForConditionalGeneration` /// /// # Arguments /// /// * `p` - Variable store path for the root of the BART model /// * `config` - `BartConfig` object defining the model architecture /// * `generation_mode` - flag indicating if the model should run in generation mode (a decoder start token must then be provided) /// /// # Example /// /// ```no_run /// use rust_bert::bart::{BartConfig, BartForConditionalGeneration}; /// use rust_bert::Config; /// use std::path::Path; /// use tch::{nn, Device}; /// /// let config_path = Path::new("path/to/config.json"); /// let device = Device::Cpu; /// let p = nn::VarStore::new(device); /// let config = BartConfig::from_file(config_path); /// let generation_mode = true; /// let bart: BartForConditionalGeneration = /// BartForConditionalGeneration::new(&p.root() / "bart", &config, generation_mode); /// ``` pub fn new<'p, P>( p: P, config: &BartConfig, generation_mode: bool, ) -> MarianForConditionalGeneration where P: Borrow<nn::Path<'p>>, { let p = p.borrow(); let base_model = BartModel::new(p / "model", config, generation_mode); let final_logits_bias = p.var( "final_logits_bias", &[1, config.vocab_size], Init::Const(0.), ); MarianForConditionalGeneration { base_model, final_logits_bias, } } /// Forward pass through the model /// /// # Arguments /// /// * `input_ids` - Optional input tensor of shape (*batch size*, *source_sequence_length*). Must be provided when not running in generation mode /// * `attention_mask` - Optional attention mask of shape (*batch size*, *source_sequence_length*) for the encoder positions. Positions with a mask with value 0 will be masked. /// * `encoder_outputs` - Optional tuple made of a tensor of shape (*batch size*, *source_sequence_length*, *encoder_hidden_dim*) and optional vectors of tensors of length *num_encoder_layers* with shape (*batch size*, *source_sequence_length*, *hidden_size*). /// These correspond to the encoder last hidden state and optional hidden states/attention weights for encoder layers. When provided, the encoder hidden state will not be recalculated. Useful for generation tasks. /// * `decoder_input_ids` - Optional input tensor of shape (*batch size*, *target_sequence_length*). Must be provided when running in generation mode (e.g. initialiazed with a BOS token) /// * `decoder_attention_mask` - Optional attention mask of shape (*batch size*, *target_sequence_length*) for the decoder positions. Positions with a mask with value 0 will be masked. /// * `train` - boolean flag to turn on/off the dropout layers in the model. Should be set to false for inference. /// /// # Returns /// /// * `lm_logits` - `Tensor` of shape (*batch size*, *target_sequence_length*, *vocab_size*) representing the logits for each vocab item and position /// * `encoder_hidden_states` - `Tensor` of shape (*batch size*, *source_sequence_length*, *hidden_size*) representing the activations of the last encoder hidden state /// * `all_encoder_hidden_states` - `Option<Vec<Tensor>>` of length *num_encoder_layers* with shape (*batch size*, *source_sequence_length*, *hidden_size*) /// * `all_encoder_attentions` - `Option<Vec<Tensor>>` of length *num_encoder_layers* with shape (*batch size*, *source_sequence_length*, *hidden_size*) /// * `all_decoder_hidden_states` - `Option<Vec<Tensor>>` of length *num_decoder_layers* with shape (*batch size*, *target_sequence_length*, *hidden_size*) /// * `all_decoder_attentions` - `Option<Vec<Tensor>>` of length *num_decoder_layers* with shape (*batch size*, *target_sequence_length*, *hidden_size*) /// /// # Example /// /// ```no_run /// # use tch::{nn, Device, Tensor, no_grad}; /// # use rust_bert::Config; /// # use std::path::Path; /// # use tch::kind::Kind::{Int64, Double}; /// use rust_bert::bart::BartConfig; /// use rust_bert::marian::MarianForConditionalGeneration; /// # let config_path = Path::new("path/to/config.json"); /// # let vocab_path = Path::new("path/to/vocab.txt"); /// # let device = Device::Cpu; /// # let vs = nn::VarStore::new(device); /// # let config = BartConfig::from_file(config_path); /// # let mut marian_model = MarianForConditionalGeneration::new(&vs.root(), &config, false); /// let (batch_size, source_sequence_length, target_sequence_length) = (64, 128, 56); /// let input_tensor = Tensor::rand(&[batch_size, source_sequence_length], (Int64, device)); /// let target_tensor = Tensor::rand(&[batch_size, target_sequence_length], (Int64, device)); /// let encoder_attention_mask = /// Tensor::ones(&[batch_size, source_sequence_length], (Int64, device)); /// let decoder_attention_mask = /// Tensor::ones(&[batch_size, source_sequence_length], (Int64, device)); /// /// let ( /// decoder_output, /// encoder_hidden_states, /// cache, /// all_encoder_hidden_states, /// all_encoder_attentions, /// all_decoder_hidden_states, /// all_decoder_attentions, /// ) = no_grad(|| { /// marian_model.forward_t( /// Some(&input_tensor), /// Some(&encoder_attention_mask), /// None, /// Some(&target_tensor), /// Some(&decoder_attention_mask), /// None, /// false, /// ) /// }); /// ``` pub fn forward_t( &self, input_ids: Option<&Tensor>, attention_mask: Option<&Tensor>, encoder_outputs: Option<(Tensor, Option<Vec<Tensor>>, Option<Vec<Tensor>>)>, decoder_input_ids: Option<&Tensor>, decoder_attention_mask: Option<&Tensor>, old_layer_states: Option<Vec<(Option<LayerState>, Option<LayerState>)>>, train: bool, ) -> ( Tensor, Tensor, Option<Vec<(Option<LayerState>, Option<LayerState>)>>, Option<Vec<Tensor>>, Option<Vec<Tensor>>, Option<Vec<Tensor>>, Option<Vec<Tensor>>, ) { let ( decoder_outputs, encoder_hidden_states, decoder_cache, all_decoder_hidden_states, all_decoder_attentions, all_encoder_hidden_states, all_encoder_attentions, ) = self.base_model.forward_t( input_ids, attention_mask, decoder_input_ids, encoder_outputs, decoder_attention_mask, old_layer_states, train, ); let lm_logits = decoder_outputs.linear::<Tensor>(&self.base_model.embeddings.ws, None); ( lm_logits, encoder_hidden_states, decoder_cache, all_decoder_hidden_states, all_decoder_attentions, all_encoder_hidden_states, all_encoder_attentions, ) } pub fn encode(&self, input_ids: &Tensor, attention_mask: Option<&Tensor>) -> Tensor { let (encoder_hidden_states, _, _) = self.base_model.encoder.forward_t( input_ids, attention_mask, &self.base_model.embeddings, false, ); encoder_hidden_states } } impl LMHeadModel for MarianForConditionalGeneration { /// Forward pass through the model /// /// # Arguments /// /// * `input_ids` - Optional input tensor of shape (*batch size*, *sequence_length*). If None, pre-computed embeddings must be provided (see `input_embeds`) /// * `layer_past` - Unused for BART /// * `attention_mask` - Optional mask of shape (*batch size*, *sequence_length*). Masked position have value 0, non-masked value 1. If None set to 1 /// * `input_embeds` - Unused for BART /// * `token_type_ids` - Unused for BART /// * `position_ids` - Unused for BART /// * `encoder_outputs` - Optional tuple made of a tensor of shape (*batch size*, *source_sequence_length*, *encoder_hidden_dim*) and optional vectors of tensors of length *num_encoder_layers* with shape (*batch size*, *source_sequence_length*, *hidden_size*). /// These correspond to the encoder last hidden state and optional hidden states/attention weights for encoder layers. When provided, the encoder hidden state will not be recalculated. Useful for generation tasks. /// * `decoder_input_ids` - Optional input tensor of shape (*batch size*, *target_sequence_length*). Must be provided when running in generation mode (e.g. initialiazed with a BOS token) /// * `train` - boolean flag to turn on/off the dropout layers in the model. Should be set to false for inference. /// /// /// # Returns /// /// * `lm_logits` - `Tensor` of shape (*batch size*, *sequence_length*, *vocab_size*) representing the logits for each vocab item and position /// * `past` - None /// * `encoder_hidden_states` - `Option<Tensor>` Hidden states for the encoder /// * `hidden_states` - None /// * `attentions` - None /// /// # Example /// /// ```no_run /// # use tch::{nn, Device, Tensor, no_grad}; /// # use rust_bert::Config; /// # use std::path::Path; /// # use tch::kind::Kind::{Int64, Double}; /// use rust_bert::bart::BartConfig; /// use rust_bert::marian::MarianForConditionalGeneration; /// # let config_path = Path::new("path/to/config.json"); /// # let vocab_path = Path::new("path/to/vocab.txt"); /// # let device = Device::Cpu; /// # let vs = nn::VarStore::new(device); /// # let config = BartConfig::from_file(config_path); /// # let marian_model = MarianForConditionalGeneration::new(&vs.root(), &config, false); /// let (batch_size, source_sequence_length, target_sequence_length) = (64, 128, 56); /// let input_tensor = Tensor::rand(&[batch_size, source_sequence_length], (Int64, device)); /// let target_tensor = Tensor::rand(&[batch_size, target_sequence_length], (Int64, device)); /// let encoder_attention_mask = /// Tensor::ones(&[batch_size, source_sequence_length], (Int64, device)); /// let decoder_attention_mask = /// Tensor::ones(&[batch_size, source_sequence_length], (Int64, device)); /// /// let ( /// decoder_output, /// encoder_hidden_states, /// cache, /// all_encoder_hidden_states, /// all_encoder_attentions, /// all_decoder_hidden_states, /// all_decoder_attentions, /// ) = no_grad(|| { /// marian_model.forward_t( /// Some(&input_tensor), /// Some(&encoder_attention_mask), /// None, /// Some(&target_tensor), /// Some(&decoder_attention_mask), /// None, /// false, /// ) /// }); /// ``` fn forward_t( &self, input_ids: &Option<Tensor>, cache: Cache, attention_mask: &Option<Tensor>, _token_type_ids: &Option<Tensor>, _position_ids: &Option<Tensor>, _input_embeds: &Option<Tensor>, encoder_outputs: Option<&Tensor>, decoder_input_ids: &Option<Tensor>, train: bool, ) -> Result< ( Tensor, Option<Tensor>, Cache, Option<Vec<Tensor>>, Option<Vec<Tensor>>, ), &'static str, > { let (decoder_output, encoder_hidden_states, new_cache, _, _, _, _) = match cache { Cache::BARTCache(cached_layer_states) => self.base_model.forward_t( input_ids.as_ref(), attention_mask.as_ref(), decoder_input_ids.as_ref(), Some((encoder_outputs.as_ref().unwrap().copy(), None, None)), None, cached_layer_states, train, ), Cache::None => self.base_model.forward_t( input_ids.as_ref(), attention_mask.as_ref(), decoder_input_ids.as_ref(), Some((encoder_outputs.as_ref().unwrap().copy(), None, None)), None, None, train, ), _ => Err("Cache not compatible with Marian Model")?, }; let lm_logits = decoder_output.linear::<Tensor>(&self.base_model.embeddings.ws, None) + &self.final_logits_bias; Ok(( lm_logits, Some(encoder_hidden_states), Cache::BARTCache(new_cache), None, None, )) } }