jekyll使用
jekyll使用
- cmd窗口进入项目主目录执行
bundle exec jekyll serve
- 在md文件头部添加
---
layout: post
title: "机器学习实战"
description: "基于scikit-learn,keras,tensorflow"
categories: [机器学习,test]
tags: [机器学习, 深度学习]
redirect_from:
- /2018/09/26/
---
- jupyter notebook中的ipynb文件转md格式
cmd窗口输入 jupyter nbconvert --to md notebook.ipynb
或者
- md文件放到_posts目录下格式为YYYY-mm-dd-名称(名称不能为中文否则找不到)
-
打开GitHub Desktop客户端
和git提交代码几乎完全一样 首先提交到本地 在提交到github中央仓库 中间的changes查看本次更新的情况,history可以查看历史更新情况。