-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: Allow multi-file edits #83
Open
kgilpin
wants to merge
9
commits into
main
Choose a base branch
from
feat/multi-file-changes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Commits on Jun 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 06ae83a - Browse repository at this point
Copy the full SHA 06ae83aView commit details
Commits on Jun 15, 2024
-
I've verified that the sets are split into 4 roughly even groups. navie-1.txt is the same as devin-all.txt navie-2, navie-3, navie-4 are roughly equal groupings of the remaining instances. The union of the four sets contains 2294 members, which is the size of the SWE-Bench dataset. irb(main):4625:0> navie_1 = Set.new(File.read("navie-1.txt").split("\n")); nil => nil irb(main):4626:0> navie_2 = Set.new(File.read("navie-2.txt").split("\n")); nil => nil irb(main):4627:0> navie_3 = Set.new(File.read("navie-3.txt").split("\n")); nil => nil irb(main):4628:0> navie_4 = Set.new(File.read("navie-4.txt").split("\n")); nil => nil irb(main):4630:0> (navie_1 + navie_2 + navie_3 + navie_4).length => 2294 The instances in navie 2, 3, and 4 are sorted.
Configuration menu - View commit details
-
Copy full SHA for 7255e9f - Browse repository at this point
Copy the full SHA 7255e9fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 019bb6d - Browse repository at this point
Copy the full SHA 019bb6dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f8db91e - Browse repository at this point
Copy the full SHA f8db91eView commit details -
feat: Remove sympy__sympy-12472 from navie-4
It's causing a huge stack trace and failure of the solve instance.
Configuration menu - View commit details
-
Copy full SHA for 0efad03 - Browse repository at this point
Copy the full SHA 0efad03View commit details -
Configuration menu - View commit details
-
Copy full SHA for 60d646f - Browse repository at this point
Copy the full SHA 60d646fView commit details -
fix: Only omit specific files when generating patches
Including only files originally changed risked throwing away posttest fixes. Instead just filter out tox.ini and setup.py.
Configuration menu - View commit details
-
Copy full SHA for f686983 - Browse repository at this point
Copy the full SHA f686983View commit details -
feat: Remove sphinx from node-7 rerun instance set
Sphinx will be rerun separately via full-sphinx instance set
Configuration menu - View commit details
-
Copy full SHA for f59f46d - Browse repository at this point
Copy the full SHA f59f46dView commit details -
feat: Remove sympy__sympy-12906
Resulted in a stuck node https://github.com/getappmap/SWE-bench/actions/runs/9530714594/job/26270893260
Configuration menu - View commit details
-
Copy full SHA for 4034d9d - Browse repository at this point
Copy the full SHA 4034d9dView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.