Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 2.83 KB

README.md

File metadata and controls

44 lines (34 loc) · 2.83 KB

Tensor Craft is a collection of utilities and how-to for a typical AI/ML project.

The ImgProj stands for an Image Classification project with EfficientNet CNN Architecture:

The TxtProj stands for a Text Classification project with SVM and Tfidf dictionary:

The MlpBertProj stands for a Text Classification project of Bert Embeddings by the Multi-Level Perceptron:

The XplainProj stands for a Shapley Values Explanation project based of the LGBMClassifier model:

The LoraProj stands for a LoRA fine-tuning of the BERT model:

The LlmAdapterProj stands for an Adapter-based fine-tuning of the BERT model:

Handbooks represent common operations for Numpy/Pandas:

Tensorboard instructions

source ~/virtualenvs/tensor_craft/bin/activate
tensorboard --samples_per_plugin "images=100" --logdir ~/workspace/tensor_craft/tensorboard.run --bind_all --port 6006 --reuse_port True serve

# open browser at: http://localhost:6006