File: run.sh

package info (click to toggle)
xgboost 1.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 11,432 kB
  • sloc: cpp: 47,464; python: 26,479; java: 3,868; xml: 1,236; sh: 1,095; ansic: 919; makefile: 323; javascript: 19
file content (14 lines) | stat: -rwxr-xr-x 229 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

python -u higgs-numpy.py
ret=$?
if [[ $ret != 0 ]]; then
    echo "ERROR in higgs-numpy.py"
    exit $ret
fi
python -u higgs-pred.py
ret=$?
if [[ $ret != 0 ]]; then
    echo "ERROR in higgs-pred.py"
    exit $ret
fi