jupyter
GuokLiu
享受当下时光,专注做好一件事
展开
-
201216-JupyterLab服务器远程配置
如何获取远程服务器的密钥pythonfrom IPython.lib import passwd passwd() Enter password: Verify password:'sha1:xxxx原创 2020-12-17 07:02:26 · 711 阅读 · 1 评论 -
171111 Jupyter Notebook插入图片的4种方法
Stackover解答1 Stackover解答2 Jupyter Extension Github YoutubeYoutube上面的四种方法: 常用的方法: 1.确定当前格式是markdown格式 2.确定图片位置网络图片: ![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png)本地文件(与jup原创 2017-11-11 16:45:25 · 41546 阅读 · 10 评论 -
171127 Linux tensorboard
安装tensorfboard模块source activate tensorflow-gpupip install tensorboardBuild tensorflow graphimport tensorflow as tfin1 = tf.constant([1., 2.], name='in1')in2 = tf.Variable(tf.random_normal([2]), na原创 2017-11-27 22:58:30 · 2676 阅读 · 0 评论 -
180126 论文Probabilistic Principal Component Analysis的Python实现
论文下载 Probabilistic Principal Component Analysis Matlab代码和Jupyter代码 Github-Matlab Github-Jupyter Notebook代码1- 用于PCA的EM算法# -*- coding: utf-8 -*-"""Created on Thu Jan 25 22:06:32 2018@author: brucel原创 2018-01-26 15:05:44 · 1352 阅读 · 2 评论 -
180203 Jupyter Notebook and Markdown 插入图片位置并调整比例
171111 Jupyter Notebook插入图片的4种方法Markdown and image alignmentExample:img style="float: right;" src="whatever.jpg" width="40%">"float: right;" src="https://timgsa.baidu.com/timg?image&qualit原创 2018-02-03 17:35:43 · 7360 阅读 · 0 评论 -
180414 在Jupyter Noebook中播放mp3
import IPythonIPython.display.Audio('music.mp3')原创 2018-04-14 14:49:10 · 3637 阅读 · 0 评论 -
180415 Jupyter中并排插入两张图片
<table><td> <img src="images/attn_model.png" style="width:500;height:500px;"> <br></td> <td> <img src="images/attn_mechanism.png"原创 2018-04-15 15:22:02 · 4160 阅读 · 2 评论