File size: 917 Bytes
f213b87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400ae51
 
 
f213b87
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
language: en
license: apache-2.0
tags:
- llm
- gpt
- create-llm
- pytorch
---

# proof

This model was trained using [create-llm](https://github.com/theaniketgiri/create-llm).

## Model Description

A language model trained with create-llm framework.

## Usage

```python
import torch
from transformers import AutoTokenizer

# Load model
model = torch.load('pytorch_model.bin')
model.eval()

# Load tokenizer (if available)
try:
    tokenizer = AutoTokenizer.from_pretrained("PeterHi/proof")
except:
    print("Tokenizer not available")

# Generate text
# Add your generation code here
```

## Training Details

- **Framework:** PyTorch
- **Tool:** create-llm
- **Deployment:** Hugging Face Hub

## Citation

```bibtex
@misc{PeterHi-proof,
  author = {Peter Hickman},
  title = {Proof of Concept},
  year = {2026},
  publisher = {Hugging Face},
  howpublished = {\url{https://huggingface.co/PeterHi/proof}}
}
```