Instructions to use JamesbondK/llm-comp2025 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use JamesbondK/llm-comp2025 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit") model = PeftModel.from_pretrained(base_model, "JamesbondK/llm-comp2025") - Notebooks
- Google Colab
- Kaggle
Update READ ME.md
Browse files
README.md
CHANGED
|
@@ -62,4 +62,4 @@ model = PeftModel.from_pretrained(model, adapter)
|
|
| 62 |
Training data: u-10bei/structured_data_with_cot_dataset_512_v2
|
| 63 |
|
| 64 |
Dataset License: MIT License. This dataset is used and distributed under the terms of the MIT License.
|
| 65 |
-
Compliance: Users must comply with the MIT license (including copyright notice) and the base model's original terms of use.
|
|
|
|
| 62 |
Training data: u-10bei/structured_data_with_cot_dataset_512_v2
|
| 63 |
|
| 64 |
Dataset License: MIT License. This dataset is used and distributed under the terms of the MIT License.
|
| 65 |
+
Compliance: Users must comply with the MIT license (including copyright notice) and the base model's original terms of use.
|