Update README.md
Browse files
README.md
CHANGED
|
@@ -25,6 +25,18 @@ Developed by Asmi Gulati and Bhuvi Jain, this tool aims to enhance the accessibi
|
|
| 25 |
- **License:** MIT
|
| 26 |
- **Finetuned from model:** `transformers` library model
|
| 27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
### Intended Use
|
| 29 |
|
| 30 |
Vakil-7B is intended for direct use by legal professionals and researchers who need to interact with Indian legal text. It is designed to assist with legal research, drafting, and education by providing AI-driven analysis and insights.
|
|
|
|
| 25 |
- **License:** MIT
|
| 26 |
- **Finetuned from model:** `transformers` library model
|
| 27 |
|
| 28 |
+
## Directions for Usage
|
| 29 |
+
|
| 30 |
+
```python
|
| 31 |
+
# Installation
|
| 32 |
+
!pip install "unsloth[colab_ampere] @ git+https://github.com/unslothai/unsloth.git"
|
| 33 |
+
!pip install "git+https://github.com/huggingface/transformers.git"
|
| 34 |
+
|
| 35 |
+
# Loading the Model
|
| 36 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 37 |
+
tokenizer = AutoTokenizer.from_pretrained("AISimplyExplained/Vakil-7B")
|
| 38 |
+
model = AutoModelForCausalLM.from_pretrained("AISimplyExplained/Vakil-7B")
|
| 39 |
+
|
| 40 |
### Intended Use
|
| 41 |
|
| 42 |
Vakil-7B is intended for direct use by legal professionals and researchers who need to interact with Indian legal text. It is designed to assist with legal research, drafting, and education by providing AI-driven analysis and insights.
|