Xingyao Wang
Xingyao Wang
For Issue #13, add `to_list` method to `SortedDict` and some test cases for it. It takes one optional argument `n_levels` as an input parameter. The method will return a list...
The AutoEncoder is implemented by reverse the forward EfficientNet as a decoder, current implementation only uses Dynamic Padding for TransposedConv2d which works fine for me now.
# Before submitting - [x] Was this discussed/approved via a Github issue? (no need for typos, doc improvements) - [x] Did you read the [contributor guideline](https://github.com/pytorch/fairseq/blob/main/CONTRIBUTING.md)? - [x] Did you...
A minimalistic implementation of Docker Sandbox with less than 100 LOC and requires only built-in libraries. It exposes a `.execute` API to run arbitrary bash commands inside the docker container....
Following instructions [here](https://github.com/OpenDevin/OpenDevin/tree/main/evaluation/SWE-bench#run-tests-for-a-prediction-file-inside-a-docker-container), you will set up prediction files from Devin, and run evaluation using OpenDevin's `SWE-Bench` [fork](https://github.com/OpenDevin/SWE-bench.git). This task aims to ensure the SWE-Bench evaluation (using OpenDevin's fork) can...
Remove print statements inside codeact agent, and manage observation and action printing (with color) inside control loop.
This PR tries to resolve the issue discussed [here](https://github.com/OpenDevin/OpenDevin/issues/226#issuecomment-2021943071) by making the Docker Sandbox Stateful (e.g., keeping track of all `cd`ed directories). The current draft solution (not working!) is built...
Using the docker container in #56, we do: We first download the swe-bench test set: ```python3 # download_swebench_test.py from datasets import load_dataset import pandas as pd dataset = load_dataset("princeton-nlp/SWE-bench") test...
Pytest error faced when running evaluation for `matplotlib`: ``` Test Script: . /SWE-bench/testbed/claude-2/matplotlib__matplotlib/3.6/tmp13m3m8ts/miniconda3/bin/activate matplotlib__matplotlib__3.6 && echo 'activate successful' && pytest --no-header -rA --tb=no -p no:cacheprovider lib/matplotlib/tests/test_subplots.py; Output: activate successful /bin/sh:...
I tried to implement the ssh-based stateful docker sandbox solution @frankxu2004 [proposed](https://github.com/OpenDevin/OpenDevin/issues/226#issuecomment-2041220938). Turns out it is not hard to get working! I haven't implemented `root` login yet, but I think...