DarwinAnim8or commited on
Commit
6b627d2
·
1 Parent(s): b2f9169

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md CHANGED
@@ -1,3 +1,43 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ datasets:
4
+ - DarwinAnim8or/DMV-Plate-Review
5
+ language:
6
+ - en
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - dmv
10
+ - fun
11
  ---
12
+
13
+ # GPT-DMV-125m
14
+ A finetuned version of [GPT-Neo-125M](https://huggingface.co/EleutherAI/gpt-neo-125M) on the 'DMV' dataset. (Linked above)
15
+ A demo is available [here](#TODO)
16
+
17
+ # Training Procedure
18
+ This was trained on the 'grug' dataset, using the "HappyTransformers" library on Google Colab.
19
+ This model was trained for 5 epochs with learning rate 1e-2.
20
+
21
+ # Biases & Limitations
22
+ This likely contains the same biases and limitations as the original GPT-Neo-125M that it is based on, and additionally heavy biases from the DMV dataset.
23
+
24
+ # Intended Use
25
+ This model is meant for fun, nothing else.
26
+
27
+ # Sample Use
28
+ ```python
29
+ #Import model:
30
+ from happytransformer import HappyGeneration
31
+ happy_gen = HappyGeneration("GPT-NEO", "DarwinAnim8or/GPT-DMV-125m")
32
+
33
+ #Set generation settings:
34
+ from happytransformer import GENSettings
35
+ args_top_k = GENSettings(no_repeat_ngram_size=3, do_sample=True,top_k=80, temperature=0.4, max_length=50, early_stopping=False)
36
+
37
+ #Generate a response:
38
+ result = happy_gen.generate_text("""PLATE: LUCH
39
+ REVIEW REASON CODE: """, args=args_top_k)
40
+
41
+ print(result)
42
+ print(result.text)
43
+ ```