--- language: - en Tags: - fine-tuned - legal - Indian law license: "apache-2.0" metrics: - perplexity --- # Fine-Tuned Falcon 7B - Indian Law This is a Falcon 7B model fine-tuned for question answering in the domain of Indian law. It has been trained to answer questions regarding various aspects of the Indian legal system, such as the Constitution, the roles of governmental positions, and more. ## Model Description Falcon is a family of state-of-the-art language models created by the Technology Innovation Institute in Abu Dhabi. This version, Falcon 7B, has been fine-tuned to specialize in understanding and generating responses related to Indian law. The model was trained on a custom dataset composed of question-answer pairs about Indian law. ## How to use You can use this model for generating responses. Here is how to do it: ```python from transformers import pipeline generator = pipeline('text-generation', model='path_to_your_model') print(generator(": What is the role of the Judiciary as per the Constitution of India?", max_length=100))