The value of knowledge lies not in possession, but in share.

0%

下载Faster-RCNN

1
2
cd ~
git clone --recursive https://github.com/rbgirshick/py-faster-rcnn.git

安装Python依赖包

1
2
3
4
sudo apt-get install python-pip
sudo pip install cython
sudo apt-get install python-opencv
sudo pip install easydic
阅读全文 »

下载Fast-RCNN

1
2
cd ~
git clone --recursive https://github.com/rbgirshick/fast-rcnn.git

安装Python依赖包

1
2
3
4
sudo apt-get install python-pip
sudo pip install cython
sudo apt-get install python-opencv
sudo pip install easydic
阅读全文 »

绝对路径: cd /home/python
相对路径: cd Desktop

. : 表示当前目录
.. : 表示当前目录的上一层目录
../.. : 表示当前目录的上上层目录
没有…或以上

阅读全文 »

修改终端的配色:Solarized

现在基本用 ubuntu 做开发,直接在终端(gnome-terminal)里面 vim,但配色效果不甚满意,因为 gvim 的配色是 Solarized,google告诉我 Gnome-Terminal 也可以这样配。可以先围观下效果图:

阅读全文 »

常用

Tab 自动补全

Ctrl + Z 撤销   Ctrl + Y 前进

Ctrl+[对齐   Ctrl+]对齐返回

Ctrl+/ 注释单行 Ctrl+Shift+/ 注释多行。

2空格转4空格的操作:
View->Indentation->Convert Indentation to Tabs->Tab width 4->Convert Indentation to Spaces

SublimeText自带格式化:

Edit -> Line -> Reindent

阅读全文 »