クラスの頭などにつけてある、アノテーションは何をするものですか?
rayで実装する分散強化学習 ②A2C(Advantage Actor-Critic) - どこから見てもメンダコ
Python
1import ray 2 3@ray.remote 4class Agent: 5 def __init__(self): 6 (省略) 7 def learn(): 8 (省略) 9 ray.init(local_mode=False) 10 (省略)
投稿2021/02/01 14:13
クラスの頭などにつけてある、アノテーションは何をするものですか?
rayで実装する分散強化学習 ②A2C(Advantage Actor-Critic) - どこから見てもメンダコ
Python
1import ray 2 3@ray.remote 4class Agent: 5 def __init__(self): 6 (省略) 7 def learn(): 8 (省略) 9 ray.init(local_mode=False) 10 (省略)