各种测试
提示信息样例:
成功啦o( ̄▽ ̄)ブ
有危险Σ(っ °Д °;)っ
有消息(・∀・(・∀・(・∀・*)
当心哦≧ ﹏ ≦
折叠内容样例:
被折叠的内容 1
被折叠的内容 2
展开预先折叠内容样例:
被折叠的内容 1
被折叠的内容 2
提示面板框样例:
successs是面板框的类型,可以是:
successs
danger
info
warning
图片测试样例:
视频测试样例:
关于视频格式的解释:
链接测试样例:
More info: example
代码测试样例:
1 | #include<iostream> |
quote样例:
1.普通
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque hendrerit lacus ut purus iaculis feugiat. Sed nec tempor elit, quis aliquam neque. Curabitur sed diam eget dolor fermentum semper at eu lorem.
2.书中引用
Do not just seek happiness for yourself. Seek happiness for all. Through kindness. Through mercy.
3.twitter引用
NEW: DevDocs now comes with syntax highlighting. http://devdocs.io
4.网络文章引用
Every interaction is both precious and an opportunity to delight.
表格测试样例:
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
BP算法
训练集
设
其中
附录 Python常用命令
创建虚拟环境
python创建虚拟环境
1 | md envs |
设置国内源
1 | # 清华源 |
1 | # 阿里源 |
1 | # 腾讯源 |
1 | # 豆瓣源 |
使用requirement.txt批量安装
pip安装 requirments.txt
1 | pip install -r ./requirements.txt |
对项目生成requirement依赖,以便于其他人对项目的fork
freeze-适用于虚拟环境
1 | #生成requirement依赖 |
检查cuda版本(cmd命令)
1 | nvidia-smi |
常用Python代码
python消除警告
1 | import warnings |
plt绘图中文乱码
1 | plt.rcParams['font.sans-serif'] = ['KaiTi', 'SimHei', 'FangSong'] # 汉字字体,优先使用楷体,如果找不到楷体,则使用黑体 |
使用pip安装notebook
1 | pip install jupyter notebook |
更改juypter打开默认位置
1 | jupyter notebook --generate-config |