-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy path.travis.yml
15 lines (11 loc) · 839 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sudo: required
language: python
services:
- docker
before_install:
- docker pull mihaelacr/pydeeplearn-labeled
- docker run -d -p 127.0.0.1:80:4567 mihaelacr/pydeeplearn-labeled /bin/sh -c "cd pydeeplearn/code; python MNISTdigits.py --trainSize 100 --testSize 10 --db --train --rbmnesterov test.p --validation --save --save_best_weights --preTrainEpochs 0;"
- docker ps -a
- docker run mihaelacr/pydeeplearn-labeled /bin/sh -c "cd pydeeplearn/code; python MNISTdigits.py --trainSize 100 --testSize 10 --db --train --rbmnesterov test.p --validation --save --save_best_weights --preTrainEpochs 0;"
script:
- docker run mihaelacr/pydeeplearn-labeled /bin/sh -c "cd pydeeplearn/code; python MNISTdigits.py --trainSize 100 --testSize 10 --db --train --rbmnesterov test.p --validation --save --save_best_weights --preTrainEpochs 0;"