File size: 710 Bytes
739cfa2
4a95d06
 
 
 
 
739cfa2
4a95d06
739cfa2
4a95d06
739cfa2
 
4a95d06
 
 
739cfa2
4a95d06
739cfa2
4a95d06
 
739cfa2
4a95d06
739cfa2
4a95d06
 
739cfa2
4a95d06
 
 
 
 
739cfa2
4a95d06
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
language: en
tags:
- unsloth
- fine-tuned
license: mit

# test1

This model was fine-tuned using Unsloth and Aifisu.

## Model Details
- Base Model: google/gemma-2b
- Number of Training Examples: 99
- Created: 2025-03-14

## Usage

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "fususu/test1"

tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)

# Generate text
inputs = tokenizer("### Instruction: Tell me about AI fine-tuning\n\n### Response:", return_tensors="pt")
outputs = model.generate(**inputs, max_length=200)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
```

Created using Aifisu