Text Generation
Transformers
Safetensors
English
llama
llama-factory
legal
conversational
text-generation-inference
Instructions to use sudipto-ducs/InLegalLLaMA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sudipto-ducs/InLegalLLaMA with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="sudipto-ducs/InLegalLLaMA") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("sudipto-ducs/InLegalLLaMA") model = AutoModelForCausalLM.from_pretrained("sudipto-ducs/InLegalLLaMA", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use sudipto-ducs/InLegalLLaMA with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sudipto-ducs/InLegalLLaMA" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sudipto-ducs/InLegalLLaMA", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/sudipto-ducs/InLegalLLaMA
- SGLang
How to use sudipto-ducs/InLegalLLaMA with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "sudipto-ducs/InLegalLLaMA" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sudipto-ducs/InLegalLLaMA", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "sudipto-ducs/InLegalLLaMA" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sudipto-ducs/InLegalLLaMA", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use sudipto-ducs/InLegalLLaMA with Docker Model Runner:
docker model run hf.co/sudipto-ducs/InLegalLLaMA
update model card
Browse files
README.md
CHANGED
|
@@ -1,20 +1,23 @@
|
|
| 1 |
---
|
| 2 |
license: llama2
|
| 3 |
-
library_name: peft
|
| 4 |
tags:
|
| 5 |
- llama-factory
|
| 6 |
-
-
|
| 7 |
-
- generated_from_trainer
|
| 8 |
base_model: meta-llama/Llama-2-7b-hf
|
| 9 |
model-index:
|
| 10 |
- name: inlegalllama-pt-15-04-2024
|
| 11 |
results: []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 15 |
should probably proofread and complete it, then remove this comment. -->
|
| 16 |
|
| 17 |
-
#
|
| 18 |
|
| 19 |
This model is a fine-tuned version of [meta-llama/Llama-2-7b-hf](https://huggingface.co/meta-llama/Llama-2-7b-hf) on the inlegalllama-laws and the inlegalllama-sci datasets.
|
| 20 |
|
|
@@ -57,4 +60,4 @@ The following hyperparameters were used during training:
|
|
| 57 |
- Transformers 4.39.0
|
| 58 |
- Pytorch 2.2.1+cu121
|
| 59 |
- Datasets 2.18.0
|
| 60 |
-
- Tokenizers 0.15.2
|
|
|
|
| 1 |
---
|
| 2 |
license: llama2
|
|
|
|
| 3 |
tags:
|
| 4 |
- llama-factory
|
| 5 |
+
- legal
|
|
|
|
| 6 |
base_model: meta-llama/Llama-2-7b-hf
|
| 7 |
model-index:
|
| 8 |
- name: inlegalllama-pt-15-04-2024
|
| 9 |
results: []
|
| 10 |
+
datasets:
|
| 11 |
+
- sudipto-ducs/InLegalLLaMA-data
|
| 12 |
+
language:
|
| 13 |
+
- en
|
| 14 |
+
pipeline_tag: text-generation
|
| 15 |
---
|
| 16 |
|
| 17 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 18 |
should probably proofread and complete it, then remove this comment. -->
|
| 19 |
|
| 20 |
+
# InLegalLLaMA
|
| 21 |
|
| 22 |
This model is a fine-tuned version of [meta-llama/Llama-2-7b-hf](https://huggingface.co/meta-llama/Llama-2-7b-hf) on the inlegalllama-laws and the inlegalllama-sci datasets.
|
| 23 |
|
|
|
|
| 60 |
- Transformers 4.39.0
|
| 61 |
- Pytorch 2.2.1+cu121
|
| 62 |
- Datasets 2.18.0
|
| 63 |
+
- Tokenizers 0.15.2
|