提交 794f4d5d 编写于 作者: John(°_°)…'s avatar John(°_°)…

trivial update

上级 0b9e36a1
#!/usr/bin/env python
# encoding: utf-8
"""
@author: HuRuiFeng
@file: 4.10-forward-prop.py
@time: 2020/2/14 23:47
@desc: 4.10 前向传播实战的示例代码
"""
import matplotlib.pyplot as plt
import tensorflow as tf
......
......@@ -3,6 +3,9 @@ from __future__ import absolute_import, division, print_function, unicode_litera
import pathlib
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
import matplotlib.pyplot as plt
import pandas as pd
import seaborn as sns
......@@ -13,7 +16,6 @@ from tensorflow import keras
from tensorflow.keras import layers, losses
print(tf.__version__)
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
# 在线下载汽车效能数据集
......
#!/usr/bin/env python
# encoding: utf-8
"""
@author: HuRuiFeng
@file: 9.8-over-fitting-and-under-fitting.py
@time: 2020/2/25 21:14
@desc: 9.8 过拟合问题实战的代码
from mpl_toolkits.mplot3d import Axes3D 这个必须添加,解决3d报错问题
"""
import matplotlib.pyplot as plt
# 导入数据集生成工具
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册