You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I run a snippet from the docs to load bert config from HF Hub (load_config("bert-base-cased")), I get an error ERROR: MethodError: no method matching iterate(::Nothing)
Possible root cause: I validated that HF Hub, download and parser are working correctly. So I believe ValSplit.jl is the culprit on this line
It works on Julia 1.9 as expected, but not 1.10. It's a shame because transformers loads so much faster on 1.10!
MWE on Julia 1.10
using Transformers
using Transformers.HuggingFace
load_config("bert-base-cased")
# ERROR: MethodError: no method matching iterate(::Nothing)
First of all, thank you for the awesome package!
If I run a snippet from the docs to load bert config from HF Hub (
load_config("bert-base-cased")
), I get an errorERROR: MethodError: no method matching iterate(::Nothing)
Possible root cause: I validated that HF Hub, download and parser are working correctly. So I believe ValSplit.jl is the culprit on this line
It works on Julia 1.9 as expected, but not 1.10. It's a shame because transformers loads so much faster on 1.10!
MWE on Julia 1.10
Full stacktrace
The text was updated successfully, but these errors were encountered: