上一页 1 ··· 4 5 6 7 8
摘要: ``` ## install packages yum install tigervnc-server xhost ## start vnc and xhost vncserver export DISPLAY=[ip]:2 xhost + ## 关闭 vncserver -kill :2 ## 查看端口占用 8561 netstat -apn | grep 5902 lsof -i ... 阅读全文
posted @ 2015-09-11 15:18 bregman 阅读(228) 评论(0) 推荐(0)
摘要: 测试numpy的安装是否优化 #%pylab import numpy as np from datetime import datetime n = 2000 t1 = datetime.now() U,D,V = np.linalg.svd(np.random.randn(n,n)) # U,D 阅读全文
posted @ 2015-09-01 09:50 bregman 阅读(204) 评论(1) 推荐(0)
摘要: shell 技术 阅读全文
posted @ 2015-08-25 12:40 bregman 阅读(4882) 评论(0) 推荐(0)
摘要: 先安装openblas, 然后用pip 安装numpy``` sudo ln -s /usr/lib64/libopenblas-r0.2.14.so /usr/lib64/libopenblas.so```为了给 ipython notebook 使用, 将Windows 2008 服务器开启... 阅读全文
posted @ 2015-08-20 19:54 bregman 阅读(281) 评论(0) 推荐(0)
摘要: ## control package 安裝http://www.ituring.com.cn/article/6815 阅读全文
posted @ 2015-08-08 20:20 bregman 阅读(154) 评论(0) 推荐(0)
摘要: doc文件转txt``` python# -*- coding:utf-8 -*-# 安装pywin32包 http://sourceforge.net/projects/pywin32/files/pywin32/# windows 7下使用通过#import os, sys from fnmat... 阅读全文
posted @ 2015-07-30 17:40 bregman 阅读(860) 评论(0) 推荐(0)
摘要: xls文件转化txt``` python# -*- coding:utf-8 -*-# 安装pywin32包 http://sourceforge.net/projects/pywin32/files/pywin32/# windows 7下使用通过#import os, sys from fnma... 阅读全文
posted @ 2015-07-30 17:37 bregman 阅读(777) 评论(0) 推荐(0)
摘要: 下载脚本``` shell#!/bin/bash# down_jmlr.sh ver=$1wget http://www.jmlr.org/papers/$ver/ -O index.htmcat index.htm | \sed -r -n "s#^.*]+).pdf'>pdf.*#http:/... 阅读全文
posted @ 2015-07-09 16:46 bregman 阅读(461) 评论(0) 推荐(0)
摘要: # R 绘制中国省市分布地图``` Rlibrary(maps)library(mapdata)library(maptools);getColor=function(mapdata,provname,provcol,othercol){ f=function(x,y) ifelse(x %in%... 阅读全文
posted @ 2015-05-12 12:10 bregman 阅读(288) 评论(0) 推荐(0)
摘要: ``` shellfor i in (file1 file2 file3), do process_a $i | tee process_a $i_a.txt | process_b > $i_b.txt &donewaitcat *_a.txt *_b.txt | pr... 阅读全文
posted @ 2015-05-11 14:46 bregman 阅读(268) 评论(0) 推荐(0)
摘要: ## idea的配置记录下配置, 避免升级后无法恢复。1). 在目录下D:\Program Files\JetBrains\IntelliJ IDEA Community Edition 14.1.2\bin修改 idea.properties 文件, 文件开头添加```user.home=D:/P... 阅读全文
posted @ 2015-04-29 15:55 bregman 阅读(322) 评论(0) 推荐(0)
摘要: ``` Rset.seed(1)x<-seq(-5,5,length.out=10000)a = c(.5,0.6, 0.7, 0.8, 0.9)b = c(.5, 1, 1, 2, 5)color = c("red", "green", "blue", "orange", "black... 阅读全文
posted @ 2015-04-16 00:02 bregman 阅读(1289) 评论(0) 推荐(0)
摘要: 晚上摘抄的方法:1.点选Options -> Options Interface2.右边会跳出一个介面,点选Advance Configuration... -> Event Handlers... -> Exit。打开Exit的档案3.在 End; 的前面加上一行 `RegDeleteValu... 阅读全文
posted @ 2015-03-25 18:07 bregman 阅读(402) 评论(0) 推荐(0)
摘要: ## nips2014下载```shellwget http://papers.nips.cc/book/advances-in-neural-information-processing-systems-27-2014cat advances-in-neural-information-proce... 阅读全文
posted @ 2015-03-14 21:18 bregman 阅读(256) 评论(0) 推荐(0)
摘要: 设置更新源, 修改默认配置 阅读全文
posted @ 2015-02-10 17:04 bregman 阅读(2721) 评论(3) 推荐(0)
摘要: ```telnet ip 80``` 阅读全文
posted @ 2015-02-09 17:26 bregman 阅读(329) 评论(0) 推荐(0)
摘要: 修改 idea 配置出现的错误 阅读全文
posted @ 2015-02-08 21:29 bregman 阅读(200) 评论(0) 推荐(0)
摘要: http://mirrors.aliyun.com/ 阅读全文
posted @ 2015-02-04 17:47 bregman 阅读(191) 评论(0) 推荐(0)
摘要: 脚本中的时间函数 阅读全文
posted @ 2015-02-03 16:08 bregman 阅读(321) 评论(0) 推荐(0)
摘要: ``` # ok location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_h... 阅读全文
posted @ 2015-01-21 20:51 bregman 阅读(181) 评论(0) 推荐(0)
摘要: R画图参考例子, 双坐标 阅读全文
posted @ 2014-12-24 14:57 bregman 阅读(203) 评论(0) 推荐(0)
摘要: 机器学习算法资料整理 阅读全文
posted @ 2014-12-12 00:25 bregman 阅读(280) 评论(0) 推荐(0)
摘要: Chih-Jen Lin的报告, 如何把线性模型做好。[Large-scale Linear Classification: Status and Challenges](http://www.csie.ntu.edu.tw/~cjlin/talks/SFmeetup.pdf). Talk at S... 阅读全文
posted @ 2014-12-09 23:06 bregman 阅读(156) 评论(0) 推荐(0)
摘要: 课程视频下载 阅读全文
posted @ 2014-12-06 16:06 bregman 阅读(258) 评论(0) 推荐(0)
摘要: ## RNN应用到音乐数据,资料以及代码 * http://www-etud.iro.umontreal.ca/~boulanni/icml2012 * [Modeling Temporal Dependencies in High-Dimensional Sequences:Applica... 阅读全文
posted @ 2014-12-06 14:15 bregman 阅读(175) 评论(0) 推荐(0)
摘要: 工业代码积累 阅读全文
posted @ 2014-12-06 10:42 bregman 阅读(333) 评论(0) 推荐(0)
摘要: 书 https://github.com/alexandru/scala-best-practices 阅读全文
posted @ 2014-12-02 21:15 bregman 阅读(137) 评论(0) 推荐(0)
摘要: 东抄西抄 **用chrome插件Markdown here写邮件, 但是outlook中显示有问题** ------您可以使用Markdown:> * 整理知识,学习笔记> * 发布日记,杂文,所见所想> * 撰写发布技术文稿(代码支持)> * 撰写发布学术论文(LaTeX 公式支持)### 数学公... 阅读全文
posted @ 2014-12-02 12:59 bregman 阅读(259) 评论(0) 推荐(0)
摘要: 在博客中显示数学公式 阅读全文
posted @ 2014-12-02 11:48 bregman 阅读(422) 评论(0) 推荐(1)
上一页 1 ··· 4 5 6 7 8