File size: 676 Bytes
56e8dec
 
 
 
 
 
22a0da5
56e8dec
22a0da5
56e8dec
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Generating Right Wing News Using GPT2

### I have built a custom model for it using data from Kaggle 

Creating a new finetuned model using data from FOX news

### My model can be accessed at gagan3012/Fox-News-Generator

Check the [BenchmarkTest](https://github.com/gagan3012/Fox-News-Generator/blob/master/BenchmarkTest.ipynb) notebook for results

Find the model at [gagan3012/Fox-News-Generator](https://huggingface.co/gagan3012/Fox-News-Generator)

```
from transformers import AutoTokenizer, AutoModelWithLMHead

tokenizer = AutoTokenizer.from_pretrained("gagan3012/Fox-News-Generator")

model = AutoModelWithLMHead.from_pretrained("gagan3012/Fox-News-Generator")
```