Skip to content

Commit

Permalink
path errors corrected in pcb-aoi/singletask_learning_bench
Browse files Browse the repository at this point in the history
Resolved conflicts in path errors

Signed-off-by: Aryan <[email protected]>

changed train_url to train_index, test_url to test_index

Signed-off-by: Aryan <[email protected]>

Corrected the path errors

Signed-off-by: Aryan <[email protected]>

fault detection renamed to fault_detection

Signed-off-by: Aryan Nanda <[email protected]>

Results saved to ./pcb-aoi/singletask_learning_bench

Signed-off-by: Aryan <[email protected]>
  • Loading branch information
AryanNanda17 committed Jan 15, 2025
1 parent aefdbeb commit 2b80739
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ benchmarkingjob:
# job name of bechmarking; string type;
name: "benchmarkingjob"
# the url address of job workspace that will reserve the output of tests; string type;
workspace: "/ianvs/singletask_learning_bench/workspace"
workspace: "./workspace/singletask_learning_bench"

# the url address of test environment configuration file; string type;
# the file format supports yaml/yml;
testenv: "./examples/pcb-aoi/singletask_learning_bench/testenv/testenv.yaml"
testenv: "./examples/pcb-aoi/singletask_learning_bench/fault_detection/testenv/testenv.yaml"

# the configuration of test object
test_object:
Expand All @@ -19,7 +19,7 @@ benchmarkingjob:
- name: "fpn_singletask_learning"
# the url address of test algorithm configuration file; string type;
# the file format supports yaml/yml;
url: "./examples/pcb-aoi/singletask_learning_bench/testalgorithms/fpn/fpn_algorithm.yaml"
url: "./examples/pcb-aoi/singletask_learning_bench/fault_detection/testalgorithms/fpn/fpn_algorithm.yaml"

# the configuration of ranking leaderboard
rank:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ algorithm:
# 2> "incrementallearning"
paradigm_type: "singletasklearning"
# the url address of initial model; string type; optional;
initial_model_url: "/ianvs/initial_model/model.zip"
initial_model_url: "./initial_model/model.zip"

# algorithm module configuration in the paradigm; list type;
modules:
Expand All @@ -17,7 +17,7 @@ algorithm:
# example: basemodel.py has BaseModel module that the alias is "FPN" for this benchmarking;
name: "FPN"
# the url address of python module; string type;
url: "./examples/pcb-aoi/singletask_learning_bench/testalgorithms/fpn/basemodel.py"
url: "./examples/pcb-aoi/singletask_learning_bench/fault_detection/testalgorithms/fpn/basemodel.py"

# hyperparameters configuration for the python module; list type;
hyperparameters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ testenv:
# dataset configuration
dataset:
# the url address of train dataset index; string type;
train_url: "/ianvs/dataset/train_data/index.txt"
train_index: "./dataset/train_data/index.txt"
# the url address of test dataset index; string type;
test_url: "/ianvs/dataset/test_data/index.txt"
test_index: "./dataset/test_data/index.txt"

# metrics configuration for test case's evaluation; list type;
metrics:
# metric name; string type;
- name: "f1_score"
# the url address of python file
url: "./examples/pcb-aoi/singletask_learning_bench/testenv/f1_score.py"
url: "./examples/pcb-aoi/singletask_learning_bench/fault_detection/testenv/f1_score.py"

0 comments on commit 2b80739

Please sign in to comment.