资源简介
此文件基于github中ahmedfgad的NeuralGenetic文件,若可以访问则直接访问,否则谢谢老板的积分。
文章内容详情:此文件没有用TensorFlow,没有用pytorch,只需安装相对应的包即可使用。文章中的适应度是根据预测出来对应的类的正确的个数占总个数比例决定。通过设计自己的适应度要求即可满足上述情况。

代码片段和文件信息
import numpy
def sigmoid(inpt):
return 1.0/(1.0+numpy.exp(-1*inpt))
def relu(inpt):
result = inpt
result[inpt<0] = 0
return result
def predict_outputs(weights_mat data_inputs data_outputs activation=“relu“):
predictions = numpy.zeros(shape=(data_inputs.shape[0]))
for sample_idx in range(data_inputs.shape[0]):
r1 = data_inputs[sample_idx :]
for curr_weights in weights_mat:
r1 = numpy.matmul(r1 curr_weights)
if activation == “relu“:
r1 = relu(r1)
elif activation == “sigmoid“:
r1 = sigmoid(r1)
predicted_label = numpy.where(r1 == numpy.max(r1))[0][0]
predictions[sample_idx] = predicted_label
correct_predictions = numpy.where(predictions == data_outputs)[0].size
accuracy = (correct_predictions/data_outputs.size)*100
return accuracy predictions
def fitness(weights_mat data_inputs data_outputs activation=“relu“):
accuracy = numpy.empty(shape=(weights_mat.shape[0]))
for sol_idx in range(weights_mat.shape[0]):
curr_sol_mat = weights_mat[sol_idx :]
accuracy[sol_idx] _ = predict_outputs(curr_sol_mat data_inputs data_outputs activation=activation)
return accuracy
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
....... 1288 2020-06-02 04:42 Tutorial-Project\ANN.py
....... 5650722 2020-06-02 04:42 Tutorial-Project\dataset_features.pkl
文件 3965 2020-07-31 09:33 Tutorial-Project\Example_GA_ANN.py
....... 3230 2020-06-02 04:42 Tutorial-Project\ga.py
....... 15855 2020-06-02 04:42 Tutorial-Project\outputs.pkl
....... 4419 2020-06-02 04:42 Tutorial-Project\README.md
文件 1571751 2020-08-01 09:06 Tutorial-Project\weights_20_iterations_10%_mutation.pkl
文件 0 2020-07-31 09:25 Tutorial-Project\__init__.py
文件 1339 2020-07-31 09:33 Tutorial-Project\__pycache__\ANN.cpython-37.pyc
文件 2123 2020-07-31 09:33 Tutorial-Project\__pycache__\ga.cpython-37.pyc
目录 0 2020-07-31 09:33 Tutorial-Project\__pycache__
目录 0 2020-07-31 09:35 Tutorial-Project
----------- --------- ---------- ----- ----
7254692 12
- 上一篇:朴素贝叶斯过滤垃圾邮件源码及数据
- 下一篇:lstm_attention文本分类代码
相关资源
- 神经网络用于分类
- 基于python的三层神经网络模型搭建
- 012345手势识别神经网络代码
- numpy实现BP神经网络
- 卷积神经网络在医学图像分割中的研
- 神经网络gcn代码
- 遗传算法解决第一类生产平衡问题
- 神经网络拟合曲线
- 神经网络预测控制
- python遗传算法解决八皇后问题
- 卷积神经网络图像识别python代码pdf
- 卷积神经网络python
- Python-subpixel利用Tensorflow的一个子像素
- Python-神经网络模型能够从音频演讲中
- OCR:一个有趣的网页版手写数字识别
- NeMo_脉冲神经网络工具_spiking neural n
- 使用python自己实现神经网络操纵赛车
- 基于递归神经网络的广告点击率预估
- 卷积神经网络的Python实现【试读】1
- Make Your Own Neural Network - 搭建自己的神
- 利用脉冲耦合神经网络的图像处理.
- Python神经网络编程高清,带详细书签
- Python神经网络编程.zip
- python不使用框架实现卷积神经网络识
- CNN卷积神经网络PYTHON
- python实现的卷积神经网络CNN无框架
- 卷积神经网络图像识别python代码
- 卷积神经网络的Python实现 -《卷积神经
- 作业一_BP_SVM_RBF函数拟合.7z
- Michael Nielsen 的《Neural Networks and Deep
评论
共有 条评论