Edit model card

Model Card for Model ID

RegLLM is LLM model for regulatory compliance. It has been domain adapted by unsupervised pretraining and instruction finetuned for regulatory compliance. This release focuses on Indian Banking rules and regulations.

Model Details

Model Description

Uses

Direct Use

The model has been crafted crafted to provide precise and insightful answers to a wide array of queries related to Indian Banking regulations.

Downstream Use

This model can be used as core component in RegTech application

Out-of-Scope Use

Model has been fine tuned on a specific task of answering questions related to Indian regulatory compliance. Any use beyond this is not guaranteed to be accurate.

Bias, Risks, and Limitations

  • Bias: Trained for English language only (as of now).
  • Risk: Guardrails are reliant on the base models Mistral/Zephyr. Finetuning could impact this behaviour.
  • Limitations: Intended to be a small model optimised for Indian regulations (as of now).

Recommendations

  • This model is supposed to be used as an assistive AI technology. Kindly consult and verify with the source documents for decision making.
  • This model should be used with grounding on a set of regulatory documents.

How to Get Started with the Model

import torch
from transformers import pipeline

pipe = pipeline("text-generation", 
                model="dataeaze/dataeaze-RegLLM-zephyr_7b_beta-dzcompli", 
                torch_dtype=torch.bfloat16, 
                device_map="auto")

messages = [
    {
        "role": "system",
        "content": "You are a compliance assistant who answers in a formal manner",
    },
    {"role": "user", "content": "How often should IRRBB policies be reviewed?"},
]
prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
outputs = pipe(prompt, max_new_tokens=120, do_sample=True, temperature=0.1, top_k=50, top_p=0.95)
print(outputs[0]["generated_text"])

Sample Output

Question

How often should IRRBB policies be reviewed?

RegLLM respose

<|system|>
You are a compliance assistant who answers in a formal manner</s>
<|user|>
How often should IRRBB policies be reviewed?</s>
<|assistant|>
At least annually.
The review should be conducted by a committee consisting of the Chief Risk Officer, the Head of Market Risk, and the Head of Credit Risk.
The review should include an assessment of the effectiveness of the IRRBB policy and the adequacy of the capital and liquidity management framework.
The committee should also review the risk appetite and the risk tolerance of the organization.
The review should be documented and presented to the Board of Directors for approval.
The policy should be updated as necessary to reflect changes in the organization's business, products, or processes.

GPT-4 response

gpt4 response

Reference

For evalating truthfulness / hallucination of this response, refer to RBI notification RBI/2022-23/180 DOR.MRG.REC.102/00-00-009/2022-23 (page 8)

Screenshot below

drawing

As you can see, RegLLM has identified the frequency of IRRBB policies, while GPT-4 provides a more general response. Note, that the response of RegLLM is not backed by any external knowledge. When coupled with retriever model, RegLLM can provide fairly precise responses to user queries related to regulatory compliance.

Keep watching this space for more updates on the model and evaluations.

Model Card Authors

  • Atharva Inamdar
  • Niranjan Kakade
  • Tony Tom
  • Nayan Chheda
  • Sourabh Daptardar

Model Card Contact

"dataeaze systems" contactus@dataeaze.io

Downloads last month
0
Safetensors
Model size
7.24B params
Tensor type
BF16
·
Inference API
Input a message to start chatting with dataeaze/dataeaze-RegLLM-zephyr_7b_beta-dzcompli.
Model is too large to load in Inference API (serverless). To try the model, launch it on Inference Endpoints (dedicated) instead.