6
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

mlagents-learnをすると「AttributeError: module 'numpy' has no attribute 'float'」と怒られる

Posted at

現象(あらすじ)

前回の記事の続き

でインストールできてウキウキまじかるであったが、また足止めを食らったのであった

環境

MacBook Pro (Apple M1 Pro)
iTerm

結論

numpyをアンインストールして
numpy 1.19 をインストールする

方法

pip uninstall -y numpy
pip install numpy==1.19

原因・補足

どうやらml-agentsが利用している、numpyのバージョンにfloatというattributeが存在しないらしい
現在インストールされているバージョンは、numpy 1.24.0だったのでバージョンを下げることで対応しました

そもそも、Numpyとはなんぞや?

AI(人工知能)の進化によって近年注目度を増しているのが機械学習という、コンピューターに学習させる技術です。そして、Pythonでの機械学習の計算をより速く、効率的に行えるようにする拡張モジュールが「NumPy」です。

らしいです

6
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?