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
|
2015-01-04 21:30:24 +03:00
|
|
|
from fabtools.python import virtualenv
|
2015-01-03 13:02:21 +03:00
|
|
|
from os import path
|
2014-09-11 14:28:38 +04:00
|
|
|
|
2015-01-03 13:02:21 +03:00
|
|
|
|
|
|
|
PWD = path.dirname(__file__)
|
|
|
|
VENV_DIR = path.join(PWD, '.env')
|
2015-01-03 17:59:14 +03:00
|
|
|
DEV_ENV_DIR = path.join(PWD, '.denv')
|
|
|
|
|
|
|
|
|
|
|
|
def dev():
|
|
|
|
# Allow this to persist, since we aren't as rigorous about keeping state clean
|
|
|
|
if not file_exists('.denv'):
|
|
|
|
local('virtualenv .denv')
|
|
|
|
|
|
|
|
with virtualenv(DEV_ENV_DIR):
|
2015-01-04 21:30:24 +03:00
|
|
|
local('pip install cython')
|
|
|
|
local('pip install murmurhash')
|
|
|
|
local('pip install -r dev_requirements.txt')
|
|
|
|
|
2015-01-03 13:02:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
def sdist():
|
|
|
|
if file_exists('dist/'):
|
|
|
|
local('rm -rf dist/')
|
|
|
|
local('mkdir dist')
|
|
|
|
with virtualenv(VENV_DIR):
|
|
|
|
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):
|
2015-01-04 21:30:24 +03:00
|
|
|
local('pip install --upgrade setuptools')
|
2015-01-03 13:02:21 +03:00
|
|
|
local('pip install dist/*.tar.gz')
|
|
|
|
local('pip install pytest')
|
|
|
|
|
2014-07-05 22:49:34 +04:00
|
|
|
|
|
|
|
def make():
|
2015-01-04 13:14:07 +03:00
|
|
|
with virtualenv(DEV_ENV_DIR):
|
2015-01-03 13:02:21 +03:00
|
|
|
with lcd(path.dirname(__file__)):
|
2015-01-04 21:30:24 +03:00
|
|
|
local('python setup.py build_ext --inplace')
|
2015-01-03 13:02:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2015-01-04 21:30:24 +03:00
|
|
|
def travis():
|
|
|
|
local('open https://travis-ci.org/honnibal/thinc')
|
2014-08-20 19:02:32 +04:00
|
|
|
|
2014-09-11 14:28:38 +04:00
|
|
|
|
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')
|