File size: 588 Bytes
e1c7919
 
 
d7c2545
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
license: gpl-3.0
---

This a an fp16 variant of Proteus V0.3
https://huggingface.co/dataautogpt3/ProteusV0.3
currently under the gpl-v3 licence.

simply created by 

```py
import torch
from diffusers import DiffusionPipeline

pipeline = DiffusionPipeline.from_pretrained("dataautogpt3/ProteusV0.3", torch_dtype=torch.float16)
pipeline.save_pretrained('fp16_ProteusV0.3', safe_serialization=True, variant='fp16')
```
See the original model for details.

The fp32 version of the model, even when converted to fp16 when loading, uses up to much RAM
hence my need for this version.

Dave