File size: 304 Bytes
ce09134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
language: 
- en
---
# Pytorch int8 quantized version of gpt2-large

## Usage

Download the .bin file locally.
Load with:

Rest of the usage according to [original instructions](https://huggingface.co/gpt2-large).

```python
import torch

model = torch.load("path/to/pytorch_model_quantized.bin")
```