1 Star 0 Fork 0

release/warp-ctc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
Yusuke Nishioka 提交于 2020-09-02 18:01 +08:00 . Use pytest-flakes instead of pytest-pep8
sudo: required
dist: xenial
language: python
python:
- "3.6"
install:
## Start conda installation
# https://conda.io/docs/user-guide/tasks/use-conda-with-travis-ci.html
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
## End conda installation
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pytest pytest-flakes
- source activate test-environment
- conda install pytorch torchvision -c pytorch
- mkdir build && cd build && cmake .. && make && sudo make install && cd .. && sudo ldconfig
- cd pytorch_binding && python setup.py install && cd .. && sudo ldconfig
script:
- cd pytorch_binding && py.test tests && cd ..
- cd pytorch_binding && py.test --flakes --ignore=warpctc_pytorch/_warp_ctc && cd ..
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chinaolysongbo/warp-ctc.git
[email protected]:chinaolysongbo/warp-ctc.git
chinaolysongbo
warp-ctc
warp-ctc
pytorch_bindings

搜索帮助