-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Define blood vessel dataset and fix filename bug #203
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
yamengxi seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
.pre-commit-config.yaml
Outdated
@@ -37,4 +37,4 @@ repos: | |||
rev: v1.3.1 | |||
hooks: | |||
- id: docformatter | |||
args: ["--in-place", "--wrap-descriptions", "79"] | |||
args: ["--in-place", "--wrap-descriptions", "79"] |
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.
I didn't modify any code here.
Task linked: CU-4vmywh 添加医疗数据集CHASE_DB1, HRF, DRIVE, STARE的定义 |
Codecov Report
@@ Coverage Diff @@
## master #203 +/- ##
==========================================
+ Coverage 83.20% 83.62% +0.42%
==========================================
Files 83 89 +6
Lines 3924 4105 +181
Branches 619 647 +28
==========================================
+ Hits 3265 3433 +168
- Misses 522 533 +11
- Partials 137 139 +2
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
mmseg/datasets/drive.py
Outdated
|
||
|
||
@DATASETS.register_module() | ||
class DriveDataset(CustomDataset): |
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.
class DriveDataset(CustomDataset): | |
class DRIVEDataset(CustomDataset): |
mmseg/datasets/hrf.py
Outdated
|
||
|
||
@DATASETS.register_module() | ||
class HrfDataset(CustomDataset): |
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.
class HrfDataset(CustomDataset): | |
class HRFDataset(CustomDataset): |
mmseg/datasets/stare.py
Outdated
|
||
|
||
@DATASETS.register_module() | ||
class StareDataset(CustomDataset): |
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.
class StareDataset(CustomDataset): | |
class STAREDataset(CustomDataset): |
mmseg/datasets/chase_db1.py
Outdated
|
||
|
||
@DATASETS.register_module() | ||
class Chase_db1Dataset(CustomDataset): |
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.
class Chase_db1Dataset(CustomDataset): | |
class ChaseDB1Dataset(CustomDataset): |
Waiting for review! |
* fix filename bug * define blood vessel dataset * redo debug * fix small bug * rename dataset Co-authored-by: yamengxi <yamengxi@sensetime.com>
* Revive Make utils * Add datasets for training too
No description provided.