-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
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
API for generating autointerp + scoring for neuronpedia #108
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #108 +/- ##
=======================================
Coverage 58.15% 58.15%
=======================================
Files 17 17
Lines 1429 1429
Branches 237 237
=======================================
Hits 831 831
Misses 547 547
Partials 51 51 ☔ View full report in Codecov by Sentry. |
pyproject.toml
Outdated
@@ -8,6 +8,7 @@ packages = [{include = "sae_lens"}] | |||
|
|||
[tool.poetry.dependencies] | |||
python = "^3.10" | |||
neuron-explainer = { git = "https://github.com/hijohnnylin/automated-interpretability.git", subdirectory = "neuron-explainer" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we can have dependencies on a git repo while still being publishable on PyPI. This would also need to be published on PyPI as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah thanks! converting this PR to draft until i do this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alrighty it's done and ready for review
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 lgtm!
…Aus#108) * API for generating autointerp for neuronpedia * Undo pytest vscode setting change * Fix autointerp import * Use pypi import for automated-interpretability
Description
This adds the ability to pull a neuronpedia feature, do autointerp and scoring on it locally (with openai key that's stored locally), then uploads it to neuronpedia.
Type of change