https://github.com/Microsoft/CNTK
Raw File
Tip revision: 2f9e4697d4c558bbe9f376746fbd6e03c1d180de authored by REDMOND\sayanpa on 15 September 2017, 22:50:17 UTC
Added sequence classification to current language understanding tutorial
Tip revision: 2f9e469
run-test
#!/bin/bash

SCRIPTSDIR=$TEST_ROOT_DIR/../../Scripts

pushd $SCRIPTSDIR
echo Current dir: $SCRIPTSDIR

py.test

if [ "$?" -eq "0" ]; then
  echo "__COMPLETED__"
fi

popd

back to top