YubiAI
State-of-the-art models in AI,ML,NLP & Vision for FinTech community by Yubi Data Science Team
Install / Use
/learn @Yubi2Community/YubiAIREADME
YubiAI
State-of-the-art models in AI,ML,NLP & Vision for FinTech community by Yubi's Data Science Team. <br> <br>
<details> <summary>What's new in NLP</summary> <p>- Oct 2022
- Nov 2022
- Dec 2022
- Feb 2023
- Jun 2023
- January 2023
- March 2023
- April 2023
- Jun 2023
Download Model Locations
- You can download models directly from this google-drive shared folder
Environment
- Models files hosted on FTP server and are downloaded when constructor is called
- Curently tested on
Ubuntu 20.04,MacOS 12.3andpython >=3.7
How to install package
- Clone the git repository or download zip/tar files and unzip
cd /parent/directory/path/of/YubiAI/
- Install only NLP dependencies
pip install ".[nlp]"
- Install only Vision dependencies
pip install ".[cv]"
- Install both NLP & Vision dependencies
pip install ".[nlp,cv]"
How to use package
- Clone the git repository or download zip/tar files and unzip
- You need to append the repo path using
sys - Remaining import & code would remain same.
import sys
sys.path.append("/parent/directory/path/of/yubiai/")
from yubiai.nlp.tokenizer.yubiTokenizer import YubiTokenizer
tokenizer = YubiTokenizer()
<br>