noch inator commited on
Commit ·
5b65d02
1
Parent(s): 9f84f7e
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
| 1 |
---
|
| 2 |
license: openrail
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: openrail
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
## About the AI
|
| 6 |
+
This AI was initialy designed for a different project i was going to do, but the scope of the project was too large.
|
| 7 |
+
However this single AI that was developed for the project, and performed exceptionaly at categorizing.
|
| 8 |
+
After a bit of a data set tweak, it has been repurposed to work as a base for an assistant.
|
| 9 |
+
with just under 50k parameters, this model should run on any hardware.
|
| 10 |
+
|
| 11 |
+
## List of included files
|
| 12 |
+
train.py: the training function of the model, can be used to train a new model on different data.
|
| 13 |
+
|
| 14 |
+
categorizer.h5: the model trained on the data.csv file for 3 epoches with a batch size of 1. generorated by train.py
|
| 15 |
+
|
| 16 |
+
tokenizer.pkl: contain the tokenizer for 5he pre-trained model. genorated by train.py
|
| 17 |
+
|
| 18 |
+
interact.py: pulls categorizer.h5, and tokenizer.pkl together in a simple text-based assistan (voice in and out put comeing soon)
|
| 19 |
+
|
| 20 |
+
## How to actualy use this model
|
| 21 |
+
1. download categorizer.h5, tokenizer.pkl, and interact.py
|
| 22 |
+
2. run interact.py
|
| 23 |
+
3. ask it to do something, current capabilitys are opening websites, doing google search, and doing math
|
| 24 |
+
|
| 25 |
+
## Roadmap of features
|
| 26 |
+
- voice functionality for interact.py
|
| 27 |
+
- finding and reading results from google
|
| 28 |
+
- website finder for the open site function
|
| 29 |
+
- more category's/functions (taking requests)
|