Amalq commited on
Commit
58f9391
1 Parent(s): 33c5a0f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md CHANGED
@@ -61,3 +61,13 @@ Training Loss Validation Loss Rouge1 Rouge2 Rougel Rougelsum Gen L
61
  1.809200 2.528819 28.010600 15.268300 27.816000 27.999000 18.690000
62
  1.809200 2.534979 28.104800 15.248000 27.840400 28.069500 18.670000
63
 
 
 
 
 
 
 
 
 
 
 
 
61
  1.809200 2.528819 28.010600 15.268300 27.816000 27.999000 18.690000
62
  1.809200 2.534979 28.104800 15.248000 27.840400 28.069500 18.670000
63
 
64
+
65
+
66
+ ### Example Uses
67
+
68
+ ```python
69
+ from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
70
+ tokenizer_pre = AutoTokenizer.from_pretrained("Amalq/flan-t5-dialogue")
71
+ model_pre = AutoModelForSeq2SeqLM.from_pretrained("Amalq/flan-t5-dialogue")
72
+ ```
73
+