From 9340d586887c9992e9516cf91fd82df0ad722030 Mon Sep 17 00:00:00 2001 From: awpbash <88238304+awpbash@users.noreply.github.com> Date: Thu, 17 Jul 2025 16:42:45 +0800 Subject: [PATCH 1/2] Update README.md Changed line 133 to use string in ref_exp --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5fd3c9c..ab94667 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ We provide a simple inference script to test the model. In this script, we use G CUDA_VISIBLE_DEVICES=0 python demo/inference_single_image.py \ --image_path demo/example_images/demo_helmet.png \ --cate_name helmet \ - --ref_exp the forth helmet from left \ + --ref_exp "the forth helmet from left" \ --vis_path vis/example_output.jpg ``` @@ -264,4 +264,4 @@ Rex-Thinker is licensed under the [IDEA License 1.0](LICENSE), Copyright (c) IDE primaryClass={cs.CV}, url={https://arxiv.org/abs/2506.04034}, } -``` \ No newline at end of file +``` From 13e3f5cd3bef8a3df8b9e3d75f4961ba6cd6792b Mon Sep 17 00:00:00 2001 From: awpbash <88238304+awpbash@users.noreply.github.com> Date: Thu, 17 Jul 2025 16:44:44 +0800 Subject: [PATCH 2/2] Update requirements.txt added opencv==4.10.0.82 for dependancy compliance with GroundingDino --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 24e9014..6049d22 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,4 +21,5 @@ wandb tensorboard gradio==4.44.1 pydantic==2.10.6 -tabulate \ No newline at end of file +tabulate +opencv-python==4.10.0.82