AI & ML interests

LLM alignment, fine-tuning.

Organization Card
About org cards

Modern LLMs are rooted in secular value systems that are often misaligned with christian organisations. AI for the Church allows anyone to align and deploying doctrinally correct LLMs based on Llama2. Effectively, we are aligning models to a set of values. This HF page is for storing models rooted in christian doctrine, that can be trusted to give christian answers (a few denominations already available).

The corresponding PyPI package is made available to train and deploy the models.

pip install aiforthechurch

from aiforthechurch import align_llama2
doctrinal_dataset = "/path/to/csv"
align_llama2(doctrinal_dataset)

aiforthechurch is integrated with HuggingFace shuch that the aligned model will be automatically pushed to your HuggingFace repo of choice at the end of the training.

At aiforthechurch.org we provide tools for generating doctrinal datasets, a few of which are made available here, and further instructions.

Model details

The family of models presented here are derived from Llama-2-chat-7B, a seven billion parameter model trained by Meta for chat applications. The base ChristianGPT model was then trained on 30000 question-answer pairs obtained from biblechat.ai user data, which was first filtered for high quality and to remove any personal identifiable information (PII). These were generated with a prompted GPT-3.5 model. This is currently the standard for AI applications, but can prove un-reliable on important doctrinal issues. These were filtered out from the dataset. Denomination specific models like ChristianGPT-catholic are based on ChristianGPT and fine-tuned on denomination specific datasets.

Training requirements:

  • GPU with over 16GB of memory (we trained on NVIDIA Tesla V100 32GB and NVIDIA Ampere A6000 45GB)
  • 30GB of RAM (the raw model weights are about 29GB, our models are cast to 8bit to use less memory)

References

We leaned heavily on open-source libraries like transformers, peft, and bitsandbytes for this project.