文件名称:python_modules
文件大小:90KB
文件格式:ZIP
更新时间:2024-03-01 17:57:20
Python
pythonモジュール群 利用方法 git clone https://github.com/krocky-cooky/python_modules echo export PATH= $PATH :追加したいコマンド検索パス >> ~ /.bash_profile source ~ /.bash_profile ML 神经元 深层学习ライブラリである神经网络クラスを定义している。 from ML import neuralNetwork net = neuralNetwork ( epoch = 20000 , learning_rate = 0.1 , batch_size = 100 ) net . set_layer ([ 64 ,[ 100 , 50 ], 10 ]) net . train ( x_train , t_train ) accuracy
【文件预览】:
python_modules-master
----.gitignore(45B)
----ML()
--------neural.py(12KB)
--------__init__.py(141B)
--------algorithm.py(13KB)
--------algorithm_module()
--------neural_module()
----samples()
--------__init__.py(78B)
--------arrays.py(237B)
----README.md(2KB)