Finding hyperparameters of given model #12707
Unanswered
Jiya126
asked this question in
Help: Coding & Implementations
Replies: 1 comment 3 replies
-
Hey @Jiya126, you can access information about the components' config via |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How to find the hyperparameters in "en_coreference_web_trf" model
On using
It is throwing error:
ℹ Pipeline components
0: sentencizer
###################################################
AttributeError Traceback (most recent call last)
in <cell line: 17>()
21
22 gpipe = nlp.get_pipe(pipe)
---> 23 hyperparameter = gpipe.get_config()
24 print(hyperparameter)
25
AttributeError: 'Sentencizer' object has no attribute 'get_config'
And similarly for other components and models as well
Is there any way to access the hyperparameters of the model we are using?
Also, another thing, what is the difference between "en_coreference_web_trf" and "en_core_web_trf".
What I know is "en_coreference_web_trf" is in experimental branch of spacy and not mentioned in its documentation
Beta Was this translation helpful? Give feedback.
All reactions