コード例 #1
0
ファイル: train.py プロジェクト: YF-CHAI/AiKV
def generate_knob(action, method):
    if method == 'ddpg':
        # 根据DDPG,更新KNOB的函数
        return environment.gen_continuous(action)
    else:
        raise NotImplementedError('Not Implemented')
コード例 #2
0
def generate_knob(action, method):
    if method == 'ddpg':
        return environment.gen_continuous(action)
    else:
        raise NotImplementedError()
コード例 #3
0
 def generate_knob(action):
     return environment.gen_continuous(action)