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
The repo does not behave as expected when loaded as a package.
$ git clone https://github.com/EleutherAI/sae
>>> from sae import Sae Traceback (most recent call last): File "<python-input-2>", line 1, in <module> from sae import Sae ImportError: cannot import name 'Sae' from 'sae' (unknown location)
This can be resolved by moving sae/__main__.py to the top-level directory.
sae/__main__.py
$ mv sae/sae/__main__.py sae/
>>> from sae import Sae Triton not installed, using eager implementation of SAE decoder. >>>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The repo does not behave as expected when loaded as a package.
This can be resolved by moving
sae/__main__.py
to the top-level directory.The text was updated successfully, but these errors were encountered: