-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathspotty.yaml
More file actions
31 lines (31 loc) · 754 Bytes
/
spotty.yaml
File metadata and controls
31 lines (31 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
project:
name: TextNorm
remoteDir: /workspace/project
syncFilters:
- exclude:
- .idea/*
- .git/*
- data/*
- training/*
- '*/__pycache__/*'
- include:
- data/train/*
instance:
region: us-east-2
instanceType: p2.xlarge
volumes:
- name: TextNorm
directory: /workspace
size: 15
docker:
image: tensorflow/tensorflow:latest-gpu-py3
dataRoot: /workspace/docker
workingDir: /workspace/project
ports: [6006, 8888] # TensorBoard and Jupyter Notebook
scripts:
train: |
PYTHONPATH=. python text_norm/models/token_classes/train.py
tensorboard: |
tensorboard --logdir /workspace/project/training/token_classes
jupyter: |
/run_jupyter.sh --allow-root