We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error in google colab due to TypeError Traceback (most recent call last) in <cell line: 1>() ----> 1 qg=QGen()
/usr/local/lib/python3.10/dist-packages/Questgen/main.py in init(self) 44 self.device = device 45 self.model = model ---> 46 self.nlp = spacy.load('en_core_web_sm', quiet=True) 47 48 self.s2v = Sense2Vec().from_disk('s2v_old')
TypeError: load() got an unexpected keyword argument 'quiet'
The text was updated successfully, but these errors were encountered:
I tried like this:
# self.nlp = spacy.load('en_core_web_sm', quiet=True) self.nlp = spacy.load('en_core_web_sm')
Sorry, something went wrong.
No branches or pull requests
error in google colab due to
TypeError Traceback (most recent call last)
in <cell line: 1>()
----> 1 qg=QGen()
/usr/local/lib/python3.10/dist-packages/Questgen/main.py in init(self)
44 self.device = device
45 self.model = model
---> 46 self.nlp = spacy.load('en_core_web_sm', quiet=True)
47
48 self.s2v = Sense2Vec().from_disk('s2v_old')
TypeError: load() got an unexpected keyword argument 'quiet'
The text was updated successfully, but these errors were encountered: