is a learning material for AI beginners that focuses on training and inference. It is built on top of JAX and Flax, and is designed to be easily extensible and customizable to facilitate a better understanding of AI concepts:
collect data -> clean -> dataset -> vectorize -> train -> some magic -> save tensors -> inference
in this project, we will focus on the following:
- Loading dataset and creating training and testing samples
- Converting samples to vectors using a tokenizer
- Training on vectors, measuring loss & accuracy
- Saving/loading the model and tokenizer data
- Inference on the trained model
!!! Warning: This project is not production-ready and is not intended to be used in production. It is a learning material for AI beginners.!!!
datrin
- The root directory of the projectdata
- Contains the datasets ag_news.csv and botchain.txtdataset
- Contains a class for loading the data and splitting it into training and testing samplesinference
- Contains the inference for the classification model and tokenizermodel
- Contains the classification model class, save and load config and tensorsout
- Contains the saved config, tensors and tokenizertokenizer
- Contains the tokenizer classtrain
- Contains the training for the classification model and tokenizer
git clone git@github.com:leliuga/datrin.git && cd datrin
python3.10 -m venv venv && . venv/bin/activate
pip install .
for the GPU version of JAX, run the following command:
pip install --upgrade "jax[cuda12_pip]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
python -m train.classification --classes=World,Sports,Business,Sci/Tech data/ag_news.csv
python -m inference.tokenizer --prefix=out/ag_news "After earning a PH.D. in Sociology, Evaldas Leliuga started to work as the general manager"
python -m inference.classification --prefix=out/ag_news "After earning a PH.D. in Sociology, Evaldas Leliuga started to work as the general manager"
This project is licensed under the Mozilla Public License Version 2.0 License - see the LICENSE file for details.
This project could not have been built without the following libraries or projects. They are either directly used in Leliuga or provided a lot of inspiration for the shape of the project: