Skip to content
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

The codes of Cloud-Robotic AI Benchmarking for Edge-cloud Collaborative Lifelong Learning #65

Conversation

hsj576
Copy link
Member

@hsj576 hsj576 commented Mar 28, 2023

What type of PR is this?
This PR provides codes for PR#62

What this PR does / why we need it:
It provides a benchmark example of semantic segmentation for lifelong learning in Ianvs.

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>
@MooreZheng
Copy link
Collaborator

@luosiqi might want to take a look at it

@@ -26,7 +26,7 @@ cd /ianvs #One might use another path preferred

mkdir project
cd project
git clone https://github.com/kubeedge/ianvs.git
git clone -b feature-lifelong-n https://github.com/kubeedge/ianvs.git
Copy link
Collaborator

@MooreZheng MooreZheng Mar 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the formal version, the clone shall be revised to the main branch

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I will revise it.

if mode != 'multi-inference':

# in this mode, the inference period is skipped to accelerate training speed
if mode == 'no-inference':
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this code for test not for formal running? If it is, please modify it.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This code provide multiple modes for running, users could choose either test or formal running in "algorithm.yaml".

inference_dataset = self.dataset.load_data(self.dataset.test_url, "eval",
feature_process=_data_feature_process)
kwargs = {}
#model_eval_info = self.model_eval_config
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Annotations should be removed.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I will remove annotations.

for i, _ in enumerate(inference_dataset.x):
#print(i)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Annotations should be deleted.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I will remove annotations.

file.writelines(
f"{os.path.abspath(os.path.join(root, front))} "
f"{os.path.abspath(os.path.join(root, back))}")
#front, back = line.split(" ")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Annotations should be removed.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I will remove annotations.

@@ -148,6 +173,12 @@ def split_dataset(self, dataset_url, dataset_format, ratio, method="default",
data_types=dataset_types,
output_dir=output_dir,
times=times)
# add new splitting method for semantic segmantation
if method == "my_splitting":
return self._my_splitting(dataset_url, dataset_format, ratio,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The function name "_my_splitting" is not explicit.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I will change the name of the function

else:
test_loader, num_class = None, cityscapes.CityscapesSegmentation.NUM_CLASSES

# custom_set = cityscapes.CityscapesSegmentation(args, split='custom_resize')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Annotations should be removed.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I will remove annotations.

return len(self.images[self.split])

def __getitem__(self, index):
#print(type(self.images[self.split][index]))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Annotations should be removed.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I will remove annotations.


return model

# def main():
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Annotations should be removed.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I will remove annotations.

@luosiqi
Copy link
Contributor

luosiqi commented Apr 3, 2023

I suggest that the commits can be compressed by using "git rebase -i".

@luosiqi
Copy link
Contributor

luosiqi commented Apr 3, 2023

As you have modified core codes of ianvs, make sure it works for other paradigms such as single task learning and incremental learning.

@hsj576 hsj576 force-pushed the feature-lifelong-semantic_segmentation branch from edcefce to c96951a Compare April 3, 2023 05:56
@hsj576
Copy link
Member Author

hsj576 commented Apr 3, 2023

I suggest that the commits can be compressed by using "git rebase -i".

OK, I have compressed the commits.

@hsj576
Copy link
Member Author

hsj576 commented Apr 3, 2023

As you have modified core codes of ianvs, make sure it works for other paradigms such as single task learning and incremental learning.

I am pretty sure that the modified codes will not influence other paradigms.

@MooreZheng
Copy link
Collaborator

It seems that the CI testing is not passed.

@luosiqi
Copy link
Contributor

luosiqi commented Apr 14, 2023

Please modify your codes according to CI. It seems that your codes don't meet the coding standard.

@hsj576
Copy link
Member Author

hsj576 commented Apr 20, 2023

Please modify your codes according to CI. It seems that your codes don't meet the coding standard.

I have modified the codes to meet the coding standard.

hsj576 added 2 commits April 21, 2023 12:26
Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

add example for semantic segmentation

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

add example for semantic segmentation

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

fix some bug

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

fix the bug of memory leakage

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

fix the bug of inference

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

fix some bug

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

fix the bug of test accuracy

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

edit sedna package for lifelong learning

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

edit sedna package

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

implement dataset split method for lifelong learning

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

add test examples

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>
Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

write quick start

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

remote useless file

Signed-off-by: hsj576 <sjhu21@m.fudan.edu.cn>

revise the git command

Signed-off-by: husj <hushijing19990403@126.com>

remove annotations and change the implisit function name

Signed-off-by: husj <hushijing19990403@126.com>

modify the code to meet the coding standard

Signed-off-by: husj <hushijing19990403@126.com>

modify the code to meet the coding standard

Signed-off-by: husj <hushijing19990403@126.com>

modify the code to meet the coding standard

Signed-off-by: husj <hushijing19990403@126.com>
@hsj576 hsj576 force-pushed the feature-lifelong-semantic_segmentation branch from 5b79d54 to a74a843 Compare April 21, 2023 04:27
@jaypume
Copy link
Member

jaypume commented Apr 21, 2023

/lgtm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants