gagan3012 commited on
Commit
56e8dec
1 Parent(s): 371767c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -1
README.md CHANGED
@@ -1 +1,19 @@
1
- Generates news similar to Fox news
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Generating Right Wing News Using GPT2
2
+
3
+ ### I have built a custom model for it using data from Kaggle
4
+
5
+ Creating a new finetuned model using data from FOX news
6
+
7
+ ### My model can be accessed at: gagan3012/Fox-News-Generator
8
+
9
+ Check the BenchmarkTest notebook for results
10
+
11
+ Find the model at [gagan3012/Fox-News-Generator](https://huggingface.co/gagan3012/Fox-News-Generator)
12
+
13
+ ```
14
+ from transformers import AutoTokenizer, AutoModelWithLMHead
15
+
16
+ tokenizer = AutoTokenizer.from_pretrained("gagan3012/Fox-News-Generator")
17
+
18
+ model = AutoModelWithLMHead.from_pretrained("gagan3012/Fox-News-Generator")
19
+ ```