CoolFace
Apppublic

YAMITECHNOLOGIES/quantization_Generator

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
config.json55 linesDownload Raw Back to quantization_model
1{2  "_name_or_path": "gpt2",3  "activation_function": "gelu_new",4  "architectures": [5    "GPT2LMHeadModel"6  ],7  "attn_pdrop": 0.1,8  "bos_token_id": 50256,9  "embd_pdrop": 0.1,10  "eos_token_id": 50256,11  "initializer_range": 0.02,12  "layer_norm_epsilon": 1e-05,13  "model_type": "gpt2",14  "n_ctx": 1024,15  "n_embd": 768,16  "n_head": 12,17  "n_inner": null,18  "n_layer": 12,19  "n_positions": 1024,20  "quantization_config": {21    "_load_in_4bit": true,22    "_load_in_8bit": false,23    "bnb_4bit_compute_dtype": "float32",24    "bnb_4bit_quant_storage": "uint8",25    "bnb_4bit_quant_type": "fp4",26    "bnb_4bit_use_double_quant": false,27    "llm_int8_enable_fp32_cpu_offload": false,28    "llm_int8_has_fp16_weight": false,29    "llm_int8_skip_modules": null,30    "llm_int8_threshold": 6.0,31    "load_in_4bit": true,32    "load_in_8bit": false,33    "quant_method": "bitsandbytes"34  },35  "reorder_and_upcast_attn": false,36  "resid_pdrop": 0.1,37  "scale_attn_by_inverse_layer_idx": false,38  "scale_attn_weights": true,39  "summary_activation": null,40  "summary_first_dropout": 0.1,41  "summary_proj_to_labels": true,42  "summary_type": "cls_index",43  "summary_use_proj": true,44  "task_specific_params": {45    "text-generation": {46      "do_sample": true,47      "max_length": 5048    }49  },50  "torch_dtype": "float16",51  "transformers_version": "4.49.0",52  "use_cache": true,53  "vocab_size": 5025754}55