Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_iris.sh « iris « examples « tests - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0f4c0ad59b879e14331ff9bae962240b9b85acf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

#####################################################################
# SUMMARY: A classifier for Iris dataset
# TAGS: gcc5-fails
#####################################################################

# Exit on error
set -e

# Test code goes here
$MRT_MARIAN/iris_example > iris.out
$MRT_TOOLS/diff-nums.py iris.out iris.expected -o iris.diff

# Exit with success code
exit 0