You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,18 +23,29 @@ models are allowed, here is the process to follow:
23
23
1. K-Means Clustering(find key objects in image) -> Discriminator for integrity check(see if clustering was performed well)
24
24
2. Reverse Image Search and Google Scraping(find label of image) -> Data Downloader(find dataset from large datasets)
25
25
3. Transfer Learn Model -> Object Detector
26
+
4. Get summary from internet sources like Wikipedia; location from LiDAR(future); user from facial detection(future); etc.
27
+
5. Store all the data in the NeuralDB
26
28
```
27
29
28
30
### Natural Language Processing
29
-
Another key stage of this AGI(Artificial General Intelligence) is the huaman interaction and understanding. MAGIST will
30
-
use a Transformer chatbot to listen to conversations and simultaneously train on them. When it is queried, it will collect information from the database, and use the transformer to fit a response. This will be done by using a GAN system infused into the transformer. The transformer will act as the discriminator to perform an integrity check.
31
+
Another key stage of this AGI(Artificial General Intelligence) is the huaman interaction and understanding. MAGIST will constantly listen to conversations and make intelligent decisions. Here is the target process:
32
+
33
+
```
34
+
1. Record audio data and transcribe it(this is ***the only*** place where a pretrained model(the transcriber) is used since learning a human language fully unsupervised is incredibly arduous.
35
+
2. Use a custom positional embedding with a Self-Attention head to find key words.
36
+
3. Search these terms in the NeuralDB for possible entries.
37
+
4. Search unknown terms online and store defenitions for future reference. (future)
38
+
5. Extract key terms from matching entries. (future)
39
+
6. Insert those key terms to a text transformer trained on the collected NeuralDB data to generate a prediction. (future)
40
+
7. Utter the prediction. (future)
41
+
```
31
42
32
43
***
33
44
34
45
## Usage
35
-
This project is still under development. Please contact me at [[email protected]]() if you want immediate access
46
+
This project is still under development. Please contact me at [[email protected]]() if you want immediate access and/or support
36
47
to MAGIST. Once the algorithm is in a stable state, I will release a Python Package on PYPI and Github for access. There
37
-
will also be a wiki with more instructions.
48
+
will also be documentation with more instructions.
0 commit comments