-
Notifications
You must be signed in to change notification settings - Fork 39
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
[Fix] Update MMScan's README #99
base: mmscan
Are you sure you want to change the base?
Conversation
- **--------------For Visual Grounding Task** | ||
- **"target_id"** (list\[int\]): IDs of target objects. | ||
- **"text"** (str): Grounding text. | ||
- **"sub_class"**: The sample category of the sample. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sample's category
or
category of the sample
- **"pcds"** (np.ndarray): Point cloud data with dimensions [n_points, 6(xyz+rgb)], representing the coordinates and color of each point. | ||
- **"instance_labels"** (np.ndarray): Instance ID assigned to each point in the point cloud. | ||
- **"class_labels"** (np.ndarray): Class IDs assigned to each point in the point cloud. | ||
- **"bboxes"** (dict): Information about bounding boxes within the scan. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify what information
- **"text"** (str): Grounding text. | ||
- **"sub_class"**: The sample category of the sample. | ||
- **"ID"**: A unique identifier for the sample. | ||
- **"scan_id"**:Identifier corresponding to the related scan. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The scan's ID.
- **"target_id"** (list\[int\]): IDs of target objects. | ||
- **"text"** (str): Grounding text. | ||
- **"sub_class"**: The sample category of the sample. | ||
- **"ID"**: A unique identifier for the sample. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The sample's ID.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Recommend directly using id in the next version of release
- **"scan_id"**:Identifier corresponding to the related scan. | ||
- *For Visual Grounding task* | ||
- **"target_id"** (list\[int\]): IDs of target objects. | ||
- **"text"** (str): Text used for grounding. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Text prompt to specify the target grounding object.
- **"answers"** (list\[str\]): List of possible answers. | ||
- **"object_ids"** (list\[int\]): Object IDs referenced in the question. | ||
- **"object_names"** (list\[str\]): Types of referenced objects. | ||
- **"input_bboxes_id"** (list\[int\]): IDs of input bounding boxes. | ||
- **"input_bboxes"** (list\[np.ndarray\]): Input bounding boxes, 9 DoF. | ||
- **"input_bboxes"** (list\[np.ndarray\]): Input bounding box data, with 9 degrees of freedom. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Input 9-DoF bounding boxes.
- **'img_path'** (str): File path to the RGB image. | ||
- **'depth_img_path'** (str): File path to the depth image. | ||
- **'intrinsic'** (np.ndarray): Intrinsic parameters of the camera for RGB images. | ||
- **'depth_intrinsic'** (np.ndarray): Intrinsic parameters of the camera for Depth images. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for depth images
@@ -182,7 +186,9 @@ For the visual grounding task, our evaluator computes multiple metrics including | |||
|
|||
- **AP and AR**: These metrics calculate the precision and recall by considering each sample as an individual category. | |||
- **AP_C and AR_C**: These versions categorize samples belonging to the same subclass and calculate them together. | |||
- **gtop-k**: An expanded metric that generalizes the traditional top-k metric, offering insights into broader performance aspects. | |||
- **gTop-k**: An expanded metric that generalizes the traditional Top-k metric, offering insights into broader performance aspects. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify offering what "insights" into broader performance aspects
@@ -47,6 +51,11 @@ These are 3D visual grounding models adapted for the mmscan-devkit. Currently, t | |||
# Multiple GPU testing | |||
python tools/test.py configs/grounding/pcd_4xb24_mmscan_vg_num256.py path/to/load_pth --launcher="pytorch" | |||
``` | |||
#### ckpts & Logs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ckpts & logs -> Results and Models
Please also fix other places
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Scanrefer -> ScanRefer
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setup the Env -> setup the environment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
multiple GPU -> multiple GPUs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider polish the readme carefully using ChatGPT
Thanks for your contribution and we appreciate it a lot. The following instructions would make your pull request more healthy and more easily get feedback. If you do not understand some items, don't worry, just make the pull request and seek help from maintainers.
Motivation
Please describe the motivation of this PR and the goal you want to achieve through this PR.
Modification
Please briefly describe what modification is made in this PR.
BC-breaking (Optional)
Does the modification introduce changes that break the back-compatibility of the downstream repos?
If so, please describe how it breaks the compatibility and how the downstream projects should modify their code to keep compatibility with this PR.
Use cases (Optional)
If this PR introduces a new feature, it is better to list some use cases here, and update the documentation.
Checklist