人工神经网络python代码实现
时间: 2023-11-07 12:05:52 浏览: 115
人工神经网络python
人工神经网络的python代码实现可使用Python的第三方库如TensorFlow、Keras或PyTorch等来实现。以下是一个人工神经网络的python代码实现的示例:
```python
import tensorflow as tf
from tensorflow import keras
# 加载数据集
(x_train, y_train), (x_test, y_test) = keras.datasets.mnist.load_data()
# 数据预处理
x_train = x_train / 255.0
x_test = x_test / 255.0
# 构建神经网络模型
model = keras.Sequential([
keras.layers.Flatten(input_shape=(28, 28)),
keras.layers.Dense(128, activation='relu'),
keras.layers.Dense(10, activation='softmax')
])
# 编译模型
model.compile(optimizer='adam',
loss='sparse_categorical_crossentropy',
metrics=['accuracy'])
# 训练模型
model.fit(x_train, y_train, epochs=10)
# 评估模型
test_loss, test_acc = model.evaluate(x_test, y_test)
print('Test accuracy:', test_acc)
```
阅读全文