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
I can run the rode in Jupyter well, but got an error when running in pycharm. from kan import * model = KAN(width=[2,5,1], grid=5, k=3, seed=0)
error: NameError: name 'KAN' is not defined
The text was updated successfully, but these errors were encountered:
i also cant use in conda/spyder. i do all import requirements but cant use, does not regonize the library.
Sorry, something went wrong.
I can run the rode in Jupyter well, but got an error when running in pycharm. from kan import * model = KAN(width=[2,5,1], grid=5, k=3, seed=0) error: NameError: name 'KAN' is not defined
I had already solved the problem, the reason is that the name of the .py file is kan.py. And after chaging the file's name, everything is OK.
But my file name is not kan.py, I still got this error.
No branches or pull requests
I can run the rode in Jupyter well, but got an error when running in pycharm.
from kan import *
model = KAN(width=[2,5,1], grid=5, k=3, seed=0)
error:
NameError: name 'KAN' is not defined
The text was updated successfully, but these errors were encountered: