Intellite
Collection
Intellectually lite
β’
1 item
β’
Updated
β’
1
IntellIte Chat is a lightweight conversational AI model (~45M parameters) designed for warm, engaging dialogue and basic reasoning. Part of the IntellIte series, it delivers efficient performance on modest hardware, complete with streaming data loading, episodic memory buffers, and RAG-based knowledge augmentation.
IterableDataset
for on-the-fly data without local storage constraints. generate_with_plugins()
for custom prompts or downstream tasks.pip install transformers datasets faiss-cpu torch huggingface-hub
from il import generate_with_plugins
response = generate_with_plugins(
prompt="Hello, how's it going?",
source="wiki",
k=3,
max_new_tokens=100
)
print(response)
Run the main training script:
export HF_TOKEN=<your_hf_token>
python il.py --hf_token $HF_TOKEN --seed 42
The script will:
ProCreations/IntellIte
on Hugging Face.A SimpleEvalCallback
runs designated chat/code prompts each epoch, logging outputs for quick sanity checks.
Edit il.py
to customize:
TrainingArguments
. k
and index sources. Dataset
or IterableDataset
. --resume_from_checkpoint
to continue an interrupted run.Contributions welcome! Steps:
This project is licensed under the Apache 2.0 License.
β€οΈ Developed by ProCreations under the IntellIte brand.