-
Notifications
You must be signed in to change notification settings - Fork 38
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
In-place editor calls repeat when the modified model is run #210
Comments
Does this behavior not appear if you use |
Isn't this expected behavior since you are the cell multiple times with in_place editing? |
Same thing happens with My understanding was that the in-place is supposed to only modify the modules of the model whereas right now it looks like it just attaches literally everything within the context to the intervention graph. Is it expected? |
Yes, it is expected! It basically defines any default interventions to be ran before the newly define intervention graph in a certain context. |
This feels potentially tricky and error-prone as there are so many operations now that are patched in and are a part of the intervention graph - literally every built-in operation, all torch methods, all torch tensor creation operations and einsop functions. How can we make it more obvious that the |
For
model.edit
context, wheninplace=True
andreturn_context=True
, all method calls of the context object (editor
) repeat when the modified model is traced. The onlyeditor
method I am aware of is.log()
so I tested this behavior on it.It looks like each call of the
model.edit
context witheditor.log
inside it adds theeditor.log
call with the specified argument to the intervention graph. Then, when the model, that was edited in-place, is traced, it displays all theeditor.log
calls added inside themodel.edit
contexts.The text was updated successfully, but these errors were encountered: