红米4A ROOT步骤

 

1. 下载开发版,刷入这个版本
http://www.miui.com/download-325.html
http://www.miui.com/shuaji-329.html

使用命令行
adb push miui_HM4A_7.4.27_e52ef2df2a_6.0.zip /sdcard/
或者在这图形界面上拷贝

2.申请解锁权限
注册小米帐号后进入申请解锁http://www.miui.com/unlock/

3.按音量下+电源键进入Fastboot模式

4.http://www.miui.com/unlock/done.html下载解锁工具(miflash_unlock)解锁并重启手机

5.进入安全中心-》授权管理-》开启root

6.重启完就好了

 

 

链接:

http://www.miui.com/thread-3852678-1-1.html

http://www.miui.com/thread-6297807-1-1.html

Mac 拷贝出错

在mac上使用外置硬盘拷贝数据时出现”One or more items in… can’t be changed because they are in use”

解决如下:

xattr -d com.apple.FinderInfo <filename>

mrjob安装

环境:Ubuntu 14.04, Centos 6.5

方法一:

python setup.py install

 

方法二:

pip install mrjob

 

方法三:

python setup.py build

在运行脚本中加载库

import os,sys
sys.path.append(os.path.abspath(‘mrjob/build/lib/’))
from mrjob.job import MRJob

Docker加速

万恶的gfw造成使用docker加载超慢,只好通过国内的阿里云来加速。

打开 https://dev.aliyun.com/search.html

右上角有“管理中心”,点击使用阿里帐户登录。

点击”加速器“

下面有详细的docker加速操作步骤

还有daocloud的加速服务

创建或修改 /etc/docker/daemon.json 文件,修改为如下形式

{
    "registry-mirrors": [
        "加速地址"
    ],
    "insecure-registries": []
}

通过比较daocloud要比aliyun快不少。

另外一种方法是使用http代理:

HTTP_PROXY=proxy-server:8080 docker pull clipper/sklearn_cifar_container

clipper的安装使用

环境: Ubuntu 16.04
安装必备软件
sudo apt-get install cmake libzmq5 libzmq5-dev libhiredis-dev libev-dev g++ redis-server
安装boost 1.60
wget http://sourceforge.net/projects/boost/files/boost/1.60.0/boost_1_60_0.tar.gz
tar xvf boost_1_60_0.tar.gz
cd boost_1_60_0
sudo ./bootstrap.sh –prefix=/usr/local –with-libraries=all
sudo ./b2 install
sudo /bin/bash -c ‘echo “/usr/local/lib” > /etc/ld.so.conf.d/boost.conf’
sudo ldconfig
下载编译clipper
git clone –recursive https://github.com/ucbrise/clipper.git
cd clipper
./configure
make

 

启动restful服务

cd /home/jerry/clipper

bin/start_clipper.sh

测试服务

python examples/example_client.py

或者

curl -H “Content-Type: application/json” -X POST -d ‘{“input”: [0.4], “uid”: 4}’ http://192.168.56.101:1337/example_app/predict

 

目前先到这里,后面的特征将会陆续探索。