File size: 766 Bytes
a8fb018
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
35
---
library_name: transformers
base_model: google/gemma
tags:
- gemma
- bookkeeping
- fine-tuned
---

# gemma-bookkeeper

A Gemma-based model fine-tuned for bookkeeping tasks.

## Files

The model is sharded across four safetensors files:

- `model-00001-of-00004.safetensors`
- `model-00002-of-00004.safetensors`
- `model-00003-of-00004.safetensors`
- `model-00004-of-00004.safetensors`

along with `config.json`, `generation_config.json`, `model.safetensors.index.json`,
tokenizer files, and the chat template.

## Usage

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "jacobhedgi/gemmabookkeeper"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")
```