Upload README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# viet-robot-object-room-mapper
|
| 2 |
+
|
| 3 |
+
A tiny rule-based Python model that predicts a typical room for a given
|
| 4 |
+
Vietnamese object phrase.
|
| 5 |
+
|
| 6 |
+
The function:
|
| 7 |
+
|
| 8 |
+
```python
|
| 9 |
+
map_object_to_room(text: str) -> Room
|
| 10 |
+
```
|
| 11 |
+
|
| 12 |
+
returns one of:
|
| 13 |
+
|
| 14 |
+
`living_room`, `kitchen`, `bedroom`, `bathroom`, `hallway`,
|
| 15 |
+
`office`, `storage`, `any`, or `unknown`.
|
| 16 |
+
|
| 17 |
+
This is a lightweight demo for educational purposes.
|
| 18 |
+
|
| 19 |
+
## License
|
| 20 |
+
|
| 21 |
+
MIT
|