CoolFace
Modelpublic

cciboglu/bothspeech_detection_xlnet_pytorch

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes2downloads
config.json53 linesDownload Raw Back to root
1{2  "_name_or_path": "xlnet/xlnet-base-cased",3  "architectures": [4    "XLNetForSequenceClassification"5  ],6  "attn_type": "bi",7  "bi_data": false,8  "bos_token_id": 1,9  "clamp_len": -1,10  "d_head": 64,11  "d_inner": 3072,12  "d_model": 768,13  "dropout": 0.1,14  "end_n_top": 5,15  "eos_token_id": 2,16  "ff_activation": "gelu",17  "id2label": {18    "0": "NEGATIVE",19    "1": "POSITIVE"20  },21  "initializer_range": 0.02,22  "label2id": {23    "NEGATIVE": 0,24    "POSITIVE": 125  },26  "layer_norm_eps": 1e-12,27  "mem_len": null,28  "model_type": "xlnet",29  "n_head": 12,30  "n_layer": 12,31  "pad_token_id": 5,32  "problem_type": "single_label_classification",33  "reuse_len": null,34  "same_length": false,35  "start_n_top": 5,36  "summary_activation": "tanh",37  "summary_last_dropout": 0.1,38  "summary_type": "last",39  "summary_use_proj": true,40  "task_specific_params": {41    "text-generation": {42      "do_sample": true,43      "max_length": 25044    }45  },46  "torch_dtype": "float32",47  "transformers_version": "4.47.1",48  "untie_r": true,49  "use_mems_eval": true,50  "use_mems_train": false,51  "vocab_size": 3200052}53