CoolFace
Modelpublic

Snaseem2026/code-comment-classifier

sourceHugging Facemitupdated 8mo agoView on Hugging Face
1likes52downloads
config.json37 linesDownload Raw Back to root
1{2  "activation": "gelu",3  "architectures": [4    "DistilBertForSequenceClassification"5  ],6  "attention_dropout": 0.1,7  "dim": 768,8  "dropout": 0.1,9  "dtype": "float32",10  "hidden_dim": 3072,11  "id2label": {12    "0": "excellent",13    "1": "helpful",14    "2": "unclear",15    "3": "outdated"16  },17  "initializer_range": 0.02,18  "label2id": {19    "excellent": 0,20    "helpful": 1,21    "outdated": 3,22    "unclear": 223  },24  "max_position_embeddings": 512,25  "model_type": "distilbert",26  "n_heads": 12,27  "n_layers": 6,28  "pad_token_id": 0,29  "problem_type": "single_label_classification",30  "qa_dropout": 0.1,31  "seq_classif_dropout": 0.2,32  "sinusoidal_pos_embds": false,33  "tie_weights_": true,34  "transformers_version": "4.57.3",35  "vocab_size": 3052236}37