-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Decision Tree & Reorganized Imports
- Loading branch information
1 parent
4d9f647
commit 9efc02b
Showing
8 changed files
with
70 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
Metadata-Version: 2.1 | ||
Name: PyAI | ||
Version: 3.5 | ||
Summary: PyAI | ||
Author: Mitchell Shibilski-Unkel | ||
Author-email: None | ||
Keywords: python,ai,machine_learning,nlp | ||
Classifier: Intended Audience :: Developers | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Operating System :: Unix | ||
Classifier: Operating System :: MacOS :: MacOS X | ||
Classifier: Operating System :: Microsoft :: Windows | ||
Description-Content-Type: text/markdown | ||
License-File: LICENSE | ||
Requires-Dist: torch | ||
Requires-Dist: numpy | ||
Requires-Dist: whisper | ||
Requires-Dist: spacy | ||
|
||
|
||
# PyAI | ||
This open-source library includes both an RNN and a KNN algorithm. In addition to these algorithms, PyAI offers a simple NLP and adds a way to convert audio into text through *Whisper*. | ||
|
||
Clone: `gh repo clone MitchellShibilski-Unkel/PyAI` <br /> | ||
Installation: `pip install git+https://github.com/MitchellShibilski-Unkel/PyAI.git@main` | ||
|
||
# Algorithms | ||
- RNN | ||
- KNN | ||
- ReLU | ||
- Softmax | ||
|
||
# NLP | ||
Able To Do: | ||
- Gets sentence tense | ||
- Gets each word and sentence | ||
- Able to change the type of tokenization `(letters, words, or sentences)` | ||
- Able to get the part of speech of a word | ||
|
||
# Audio | ||
Able To Do: | ||
- Able to convert audio to text | ||
- Get the language used in the audio | ||
- Translate one language to another |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
LICENSE | ||
README.md | ||
setup.py | ||
PyAI.egg-info/PKG-INFO | ||
PyAI.egg-info/SOURCES.txt | ||
PyAI.egg-info/dependency_links.txt | ||
PyAI.egg-info/requires.txt | ||
PyAI.egg-info/top_level.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
torch | ||
numpy | ||
whisper | ||
spacy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters