2015-01-03 13:02:21 +03:00
|
|
|
from fabric.api import local, run, lcd, cd, env
|
|
|
|
from os.path import exists as file_exists
|
|
|
|
from fabtools.python import virtualenv
|
|
|
|
from os import path
|
2014-09-11 14:28:38 +04:00
|
|
|
import json
|
|
|
|
|
2015-01-03 13:02:21 +03:00
|
|
|
|
|
|
|
PWD = path.dirname(__file__)
|
|
|
|
VENV_DIR = path.join(PWD, '.env')
|
|
|
|
|
|
|
|
|
|
|
|
def sdist():
|
|
|
|
if file_exists('dist/'):
|
|
|
|
local('rm -rf dist/')
|
|
|
|
local('mkdir dist')
|
|
|
|
with virtualenv(VENV_DIR):
|
|
|
|
local('pip install --upgrade setuptools')
|
|
|
|
local('pip install murmurhash')
|
|
|
|
local('pip install numpy')
|
|
|
|
local('python setup.py sdist')
|
|
|
|
|
|
|
|
|
|
|
|
def publish():
|
|
|
|
with virtualenv(VENV_DIR):
|
|
|
|
local('python setup.py register')
|
|
|
|
local('twine upload dist/*.tar.gz')
|
|
|
|
|
|
|
|
|
|
|
|
def setup():
|
|
|
|
if file_exists('.env'):
|
|
|
|
local('rm -rf .env')
|
|
|
|
local('virtualenv .env')
|
|
|
|
|
|
|
|
|
|
|
|
def install():
|
|
|
|
with virtualenv(VENV_DIR):
|
|
|
|
local('pip install dist/*.tar.gz')
|
|
|
|
local('pip install pytest')
|
|
|
|
|
2014-07-05 22:49:34 +04:00
|
|
|
|
|
|
|
def make():
|
2015-01-03 13:02:21 +03:00
|
|
|
with virtualenv(VENV_DIR):
|
|
|
|
with lcd(path.dirname(__file__)):
|
|
|
|
local('python dev_setup.py build_ext --inplace > /dev/null')
|
|
|
|
|
2014-11-05 12:46:29 +03:00
|
|
|
|
|
|
|
def vmake():
|
2015-01-03 13:02:21 +03:00
|
|
|
with virtualenv(VENV_DIR):
|
|
|
|
with lcd(path.dirname(__file__)):
|
|
|
|
local('python dev_setup.py build_ext --inplace')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def clean():
|
|
|
|
with lcd(path.dirname(__file__)):
|
|
|
|
local('python dev_setup.py clean --all')
|
|
|
|
|
2014-07-05 22:49:34 +04:00
|
|
|
|
2015-01-03 13:02:21 +03:00
|
|
|
def test():
|
|
|
|
with virtualenv(VENV_DIR):
|
|
|
|
with lcd(path.dirname(__file__)):
|
|
|
|
local('py.test -x')
|
2014-09-11 14:28:38 +04:00
|
|
|
|
2014-11-05 12:46:29 +03:00
|
|
|
|
2014-07-05 22:49:34 +04:00
|
|
|
def clean():
|
|
|
|
local('python setup.py clean --all')
|
|
|
|
|
2014-09-11 14:28:38 +04:00
|
|
|
|
2014-08-20 19:02:32 +04:00
|
|
|
def docs():
|
2014-12-30 15:27:30 +03:00
|
|
|
with lcd('docs'):
|
|
|
|
local('make html')
|
2014-08-20 19:02:32 +04:00
|
|
|
|
2014-09-11 14:28:38 +04:00
|
|
|
|
|
|
|
def sbox():
|
|
|
|
local('python sb_setup.py build_ext --inplace')
|
|
|
|
|
2015-01-03 13:02:21 +03:00
|
|
|
|
2014-09-11 14:28:38 +04:00
|
|
|
def sbclean():
|
|
|
|
local('python sb_setup.py clean --all')
|
|
|
|
|
2014-11-05 12:46:29 +03:00
|
|
|
|
|
|
|
def pos():
|
2014-11-06 20:44:14 +03:00
|
|
|
local('rm -rf data/en/pos')
|
2014-11-05 12:46:29 +03:00
|
|
|
local('python tools/train.py pos ~/work_data/docparse/wsj02-21.conll data/en/pos')
|
|
|
|
local('python tools/tag.py ~/work_data/docparse/wsj22.raw /tmp/tmp')
|
|
|
|
local('python tools/eval_pos.py ~/work_data/docparse/wsj22.conll /tmp/tmp')
|
|
|
|
|
|
|
|
|
|
|
|
def ner():
|
|
|
|
local('rm -rf data/en/ner')
|
2014-11-11 13:10:40 +03:00
|
|
|
local('python tools/train_ner.py ~/work_data/docparse/wsj02-21.conll data/en/ner')
|
|
|
|
local('python tools/tag_ner.py ~/work_data/docparse/wsj22.raw /tmp/tmp')
|
2014-11-06 20:44:14 +03:00
|
|
|
local('python tools/eval_ner.py ~/work_data/docparse/wsj22.conll /tmp/tmp | tail')
|
2014-11-12 15:22:05 +03:00
|
|
|
|
|
|
|
|
|
|
|
def conll():
|
|
|
|
local('rm -rf data/en/ner')
|
|
|
|
local('python tools/conll03_train.py ~/work_data/ner/conll2003/eng.train data/en/ner/')
|
|
|
|
local('python tools/conll03_eval.py ~/work_data/ner/conll2003/eng.testa')
|