Update README (Seq2Seq Clf Count)
Browse files
README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- flight-planning
|
| 5 |
+
- transformer
|
| 6 |
+
- coordinate-prediction
|
| 7 |
+
- sequence-to-sequence
|
| 8 |
+
- count-classification
|
| 9 |
+
---
|
| 10 |
+
# Flight Plan Coordinate Prediction Model (Seq2SeqCoordsTransformer)
|
| 11 |
+
Encoder-Decoder Transformer model trained for AI flight planning project. Predicts normalized coordinates directly and waypoint count via classification.
|
| 12 |
+
## Model Description
|
| 13 |
+
Seq2SeqCoordsTransformer architecture using `torch.nn.Transformer`. Predicts normalized lat/lon coordinates autoregressively and waypoint count (0-10) via classification head on encoder output.
|
| 14 |
+
* Embed Dim: 256, Heads: 8, Enc Layers: 4, Dec Layers: 4, Max Waypoints: 10
|
| 15 |
+
## Intended Use
|
| 16 |
+
Research prototype. **Not for real-world navigation.**
|
| 17 |
+
## Limitations
|
| 18 |
+
Accuracy depends on data/tuning. Fixed max waypoints (10). Not certified. **Architecture differs significantly from previous versions in this repo.**
|
| 19 |
+
## How to Use
|
| 20 |
+
Requires loading the custom `Seq2SeqCoordsTransformer` class and weights. Generation requires autoregressive decoding and taking argmax of count logits.
|
| 21 |
+
## Training Data
|
| 22 |
+
Trained on `frankmorales2020/flight_plan_waypoints` - https://huggingface.co/datasets/frankmorales2020/flight_plan_waypoints.
|
| 23 |
+
## Contact
|
| 24 |
+
Frank Morales, BEng, MEng, SMIEEE (Boeing ATF) - https://www.linkedin.com/in/frank-morales1964/
|