強化学習でgymモジュールを使う時にでるWARNを消す方法
gym/spaces/ and open up the “box.py”
に移動していただき、
def__init__(self,low.shape=None,high.shape=None,shape=None,dtype=None):
の
dtype=None を dtype=np.float32に変更すると、コードを実行した時にでるWARNを消すことができます!!
参考
gym/spaces/ and open up the “box.py”
に移動していただき、
def__init__(self,low.shape=None,high.shape=None,shape=None,dtype=None):
の
dtype=None を dtype=np.float32に変更すると、コードを実行した時にでるWARNを消すことができます!!
参考