Caplin43 commited on
Commit
7e01672
·
verified ·
1 Parent(s): dbb2d75

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +9 -25
config.json CHANGED
@@ -1,25 +1,9 @@
1
- ---
2
- license: mit
3
- pipeline_tag: text-classification
4
- library_name: pytorch
5
- language:
6
- - en
7
- ---
8
-
9
- # Acomee Robot Model v3
10
-
11
- A PyTorch-based transformer model for humanoid robot instruction classification.
12
-
13
- ## Task
14
- Classifies natural language robot instructions into structured control commands.
15
-
16
- ## Architecture
17
- BERT-based Sequence Classification model.
18
-
19
- ## Example
20
-
21
- Input:
22
- "Move forward 5 steps"
23
-
24
- Output:
25
- FORWARD_5
 
1
+ {
2
+ "model_type": "bert",
3
+ "architectures": ["BertForSequenceClassification"],
4
+ "hidden_size": 768,
5
+ "num_attention_heads": 12,
6
+ "num_hidden_layers": 12,
7
+ "vocab_size": 30522,
8
+ "num_labels": 20
9
+ }