Skip to content
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

updated names #93

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
checks:
name: Run checks workflow
uses: alan-cooney/CircuitsVis/.github/workflows/checks.yml@main
uses: TransformerLensOrg/CircuitsVis/.github/workflows/checks.yml@main

semver-parser:
name: Parse the semantic version from the release
Expand Down
8 changes: 4 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"ignorePath": "../.gitignore"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": true
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"eslint.validate": [
"javascript",
Expand All @@ -23,7 +23,7 @@
"--generated-members=numpy.* ,torch.* ,cv2.* , cv.*"
],
"python.testing.pytestArgs": [
"python/circuitsvis",
"python/circuitsvis",
],
"python.testing.pytestEnabled": true,
"rewrap.wrappingColumn": 100,
Expand All @@ -38,4 +38,4 @@
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
}
}
4 changes: 2 additions & 2 deletions react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Mechanistic Interpretability visualizations in React.

View all available components in Storybook at
https://alan-cooney.github.io/CircuitsVis .
https://TransformerLensOrg.github.io/CircuitsVis .

## Use

Expand Down Expand Up @@ -73,5 +73,5 @@ You can use this package directly from a CDN (e.g. unpkg) to render visualizatio

### Within a Python project

See https://github.com/alan-cooney/CircuitsVis for details of how to use this
See https://github.com/TransformerLensOrg/CircuitsVis for details of how to use this
library within a Python project.
2 changes: 1 addition & 1 deletion react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": "https://github.com/alan-cooney/CircuitsVis",
"repository": "https://github.com/TransformerLensOrg/CircuitsVis",
"author": "Alan Cooney",
"license": "MIT",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion react/src/attention/AttentionPattern.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export function AttentionPattern({
// parent element to have position: 'relative' and no sibling elements.
// There were previously issues that only occured at particular display
// sizes and zoom levels. See:
// https://github.com/alan-cooney/CircuitsVis/pull/63
// https://github.com/TransformerLensOrg/CircuitsVis/pull/63
// https://www.chartjs.org/docs/latest/configuration/responsive.html#important-note
// https://stackoverflow.com/a/48770978/7086623
position: "relative",
Expand Down
Loading