Instructions to use predibase/customer_support_orders with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use predibase/customer_support_orders with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-v0.1") model = PeftModel.from_pretrained(base_model, "predibase/customer_support_orders") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,7 +14,7 @@ tags:
|
|
| 14 |
|
| 15 |
This LoRA adapter was fine-tuned on the `bitext/Bitext-customer-support-llm-chatbot-training-dataset`, specifically by:
|
| 16 |
1. Grouping the data on the following `category` column values: `ORDER`, `DELIVERY`, `SHIPPING`
|
| 17 |
-
2. Merging `intent` and `response` columns into a new single column called `response_json` that is a JSON object
|
| 18 |
|
| 19 |
This is what the dataset looks like once it is preprared:
|
| 20 |
|
|
|
|
| 14 |
|
| 15 |
This LoRA adapter was fine-tuned on the `bitext/Bitext-customer-support-llm-chatbot-training-dataset`, specifically by:
|
| 16 |
1. Grouping the data on the following `category` column values: `ORDER`, `DELIVERY`, `SHIPPING`
|
| 17 |
+
2. Merging `intent` and `response` columns into a new single column called `response_json` that is a JSON object consisting of two keys: `intent` and `response`.
|
| 18 |
|
| 19 |
This is what the dataset looks like once it is preprared:
|
| 20 |
|