transformers/transformers
2019-11-22 16:27:37 -05:00
..
data Works for XLNet 2019-11-22 16:27:37 -05:00
tests Padding strategy (left and right) rather than boolean flag 2019-11-22 16:27:25 -05:00
__init__.py wip 2019-11-22 16:26:00 -05:00
__main__.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
configuration_auto.py Add CamemBERT to auto files and docs 2019-11-16 00:11:07 -05:00
configuration_bert.py model: add support for new German BERT models (cased and uncased) from @dbmdz 2019-10-11 10:20:33 +02:00
configuration_camembert.py [camembert] Upload to s3 + rename script 2019-11-16 00:11:07 -05:00
configuration_ctrl.py adding TF 2.0 model 2019-10-09 11:07:43 +02:00
configuration_distilbert.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
configuration_gpt2.py GPT-2 XL 2019-11-05 13:31:58 -05:00
configuration_openai.py Merge branch 'master' into tf2 2019-09-26 12:02:54 +02:00
configuration_roberta.py Add RoBERTa-based GPT-2 Output Detector from OpenAI 2019-11-06 16:26:31 -05:00
configuration_transfo_xl.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
configuration_utils.py Merge branch 'master' into conditional-generation 2019-10-30 16:40:35 +01:00
configuration_xlm.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
configuration_xlnet.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
convert_bert_original_tf_checkpoint_to_pytorch.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
convert_bert_pytorch_checkpoint_to_original_tf.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
convert_gpt2_original_tf_checkpoint_to_pytorch.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
convert_openai_original_tf_checkpoint_to_pytorch.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
convert_pytorch_checkpoint_to_tf2.py adding more tests on TF and pytorch serialization - updating configuration for better serialization 2019-10-10 14:30:48 +02:00
convert_roberta_original_pytorch_checkpoint_to_pytorch.py Fix import error in script to convert faisreq roberta checkpoints 2019-10-14 01:38:57 -07:00
convert_transfo_xl_original_tf_checkpoint_to_pytorch.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
convert_xlm_original_pytorch_checkpoint_to_pytorch.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
convert_xlnet_original_tf_checkpoint_to_pytorch.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
file_utils.py Fix hanging when loading pretrained models 2019-10-19 16:19:20 -04:00
modeling_auto.py Adding CTRL (squashed commit) 2019-10-03 22:29:03 -07:00
modeling_beam_search.py resolve PR comments 2019-10-29 17:10:20 +01:00
modeling_bert.py Fix BERT 2019-11-06 14:03:47 -05:00
modeling_camembert.py camembert: add wrapper for CamembertForTokenClassification 2019-11-18 14:14:19 +01:00
modeling_ctrl.py Clarify the use of past in GPT2 and CTRL 2019-11-12 10:59:37 -05:00
modeling_distilbert.py modeling: add DistilBertForTokenClassification implementation 2019-11-11 16:18:16 +01:00
modeling_encoder_decoder.py change kwargs processing 2019-10-30 16:27:51 +01:00
modeling_gpt2.py Clarify the use of past in GPT2 and CTRL 2019-11-12 10:59:37 -05:00
modeling_openai.py Merge pull request #1695 from huggingface/models_inputs_embeds 2019-11-05 09:55:28 -05:00
modeling_roberta.py Add RoBERTa-based GPT-2 Output Detector from OpenAI 2019-11-06 16:26:31 -05:00
modeling_tf_auto.py CTRL to tf automodels 2019-10-11 16:05:30 -04:00
modeling_tf_bert.py [inputs_embeds] All TF models + tests 2019-11-12 11:29:21 -05:00
modeling_tf_ctrl.py [inputs_embeds] All TF models + tests 2019-11-12 11:29:21 -05:00
modeling_tf_distilbert.py [inputs_embeds] All TF models + tests 2019-11-12 11:29:21 -05:00
modeling_tf_gpt2.py [inputs_embeds] All TF models + tests 2019-11-12 11:29:21 -05:00
modeling_tf_openai.py [inputs_embeds] All TF models + tests 2019-11-12 11:29:21 -05:00
modeling_tf_pytorch_utils.py remove usage of DUMMY_INPUTS 2019-10-14 02:09:53 +03:00
modeling_tf_roberta.py [inputs_embeds] All TF models + tests 2019-11-12 11:29:21 -05:00
modeling_tf_transfo_xl_utilities.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
modeling_tf_transfo_xl.py [inputs_embeds] All TF models + tests 2019-11-12 11:29:21 -05:00
modeling_tf_utils.py [TF models] Common attributes as per #1721 2019-11-12 11:29:21 -05:00
modeling_tf_xlm.py [inputs_embeds] All TF models + tests 2019-11-12 11:29:21 -05:00
modeling_tf_xlnet.py [inputs_embeds] All TF models + tests 2019-11-12 11:29:21 -05:00
modeling_transfo_xl_utilities.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
modeling_transfo_xl.py [inputs_embeds] All PyTorch models 2019-11-05 00:39:18 +00:00
modeling_utils.py misc doc 2019-11-05 19:06:12 -05:00
modeling_xlm.py [inputs_embeds] All PyTorch models 2019-11-05 00:39:18 +00:00
modeling_xlnet.py [inputs_embeds] All PyTorch models 2019-11-05 00:39:18 +00:00
optimization.py replace LambdaLR scheduler wrappers by function 2019-11-14 15:39:08 +01:00
tokenization_auto.py Add CamemBERT to auto files and docs 2019-11-16 00:11:07 -05:00
tokenization_bert.py Fix #1784 2019-11-11 10:15:14 -05:00
tokenization_camembert.py camembert: add implementation for save_vocabulary method 2019-11-18 15:49:44 +01:00
tokenization_ctrl.py [CTRL] warn if generation prompt does not start with a control code 2019-10-22 21:30:32 +00:00
tokenization_distilbert.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
tokenization_gpt2.py GPT-2 XL 2019-11-05 13:31:58 -05:00
tokenization_openai.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
tokenization_roberta.py Fix #1784 2019-11-11 10:15:14 -05:00
tokenization_transfo_xl.py [BIG] pytorch-transformers => transformers 2019-09-26 10:15:53 +02:00
tokenization_utils.py Padding strategy (left and right) rather than boolean flag 2019-11-22 16:27:25 -05:00
tokenization_xlm.py Fix #1784 2019-11-11 10:15:14 -05:00
tokenization_xlnet.py encode and encode_plus handle attention masks and padding 2019-11-22 16:27:15 -05:00