20 lines
503 B
Python
20 lines
503 B
Python
import torch
|
|
import PytorchBoot.stereotype as stereotype
|
|
|
|
@stereotype.evaluation_method("delta_pose_diff", comment="unfinished")
|
|
class DeltaPoseDiff:
|
|
def __init__(self, config):
|
|
pass
|
|
|
|
def evaluate(self, output_list, data_list):
|
|
return
|
|
|
|
|
|
@stereotype.evaluation_method("coverage_rate_increase",comment="unfinished")
|
|
class ConverageRateIncrease:
|
|
def __init__(self, config):
|
|
pass
|
|
|
|
def evaluate(self, output_list, data_list):
|
|
return
|
|
|