AttributeError: 'T5LayerFF' object has no attribute 'config'
#12
by
Tommycmy
- opened
Hi
I received this error when I tried to execute the the follow code
from transformers import pipeline
corrector = pipeline(
'text2text-generation',
'pszemraj/flan-t5-large-grammar-synthesis',
)
raw_text = 'i can has cheezburger'
results = corrector(raw_text)
print(results)
I am using python3.6.15, transformers 4.16.2
Please advise. Thanks!
Hi - I think this is likely a python version issue. Python 3.6/3.7 are no longer supported by huggingface and therefore by this model. Please try with python 3.8 and let me know if you still have issues.
Hope that helps!
pszemraj
changed discussion status to
closed