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

fix the Cl issue #125

Merged
merged 3 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install libgl1-mesa-glx -y
python -m pip install --upgrade pip
python -m pip install pip==24.0
python -m pip install pylint
python -m pip install ${{github.workspace}}/examples/resources/third_party/*
python -m pip install -r ${{github.workspace}}/requirements.txt
Expand Down
1 change: 1 addition & 0 deletions core/cmd/obj/benchmarkingjob.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: disable=R0801
# Copyright 2022 The KubeEdge Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
# pylint: disable=C0301
# pylint: disable=C0114
# pylint: disable=C0115
# pylint: disable=W0246
# pylint: disable=R1725
# pylint: disable=R1732
# pylint: disable=R0913
# pylint: disable=R0801
import json
import os
import os.path as osp
from core.common.constant import ParadigmType
from examples.yaoba.singletask_learning_boost.resource.utils.infer_and_error import infer_anno, merge_predict_results, \
compute_error, gen_txt_according_json, get_new_train_json
from examples.yaoba.singletask_learning_boost.resource.utils.transform_unkonwn import aug_image_bboxes
from .singletask_learning import SingleTaskLearning
import os.path as osp


class SingleTaskLearningACBoost(SingleTaskLearning):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# pylint: disable=C0114
# pylint: disable=E0401
# pylint: disable=C0115
# pylint: disable=W0246
# pylint: disable=R1725
# pylint: disable=R1732
# pylint: disable=C0103
# pylint: disable=R0801
import json
import os
import torch
Expand Down
Loading