winamnd commited on
Commit
a6b2047
·
verified ·
1 Parent(s): 4da427e

Create config.json

Browse files
Files changed (1) hide show
  1. distilbert_spam_model/config.json +10 -0
distilbert_spam_model/config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": ["DistilBertForSequenceClassification"],
3
+ "model_type": "distilbert",
4
+ "num_labels": 2,
5
+ "hidden_size": 768,
6
+ "max_position_embeddings": 512,
7
+ "attention_probs_dropout_prob": 0.1,
8
+ "hidden_dropout_prob": 0.1,
9
+ "initializer_range": 0.02
10
+ }