Tarragon

Results 2 issues of Tarragon

``` extensions = ['jpg', 'JPG', 'jpeg', 'JPEG', 'png', 'PNG'] # ... for extension in extensions: file_glob = os.path.join(image_dir, '*.' + extension) file_list.extend(gfile.Glob(file_glob)) ``` 在Windows上,后缀大小写不区分,同一张图片会被载入两次: ![image](https://user-images.githubusercontent.com/8044101/32902174-9ea00b8e-cb2c-11e7-8c16-42447ad3cbd0.png)

### Describe the bug When I use the following command to create a dataset on Windows: ```shell python -m swebench.inference.make_datasets.create_text_dataset \ --dataset_name_or_path princeton-nlp/SWE-bench \ --output_dir ./base_datasets --prompt_style style-3 \ --file_source...

bug