Caplin43 commited on
Commit
17d72c0
·
verified ·
1 Parent(s): 1bada3a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ pipeline_tag: text-generation
6
+ tags:
7
+ - navigation
8
+ - robotics
9
+ - instruction-following
10
+ - transformer
11
+ ---
12
+
13
+ # 🚗 Autonomous Navigation Transformer
14
+
15
+ Transformer-based model designed to convert natural language navigation commands into structured movement sequences.
16
+
17
+ ## 🧠 Model Details
18
+
19
+ - Architecture: Decoder-only Transformer
20
+ - Hidden Size: 2048
21
+ - Layers: 24
22
+ - Attention Heads: 16
23
+ - Parameters: ~1.3B
24
+ - Training Steps: 200k
25
+ - Dataset: 120k navigation instruction pairs
26
+
27
+ ---
28
+
29
+ ## 📄 Input Format
30
+
31
+ "Move forward 3 meters and turn right."
32
+
33
+ ## 📄 Output Format
34
+
35
+ move(distance=3m)
36
+ turn(direction=right)
37
+
38
+ ---
39
+
40
+ ## 🎯 Intended Use
41
+
42
+ - Autonomous robots
43
+ - Simulation training
44
+ - Indoor navigation agents
45
+
46
+ ---
47
+
48
+ ## ⚠️ Limitations
49
+
50
+ - English only
51
+ - Structured action output required