├── Dockerfile ├── Procfile ├── README.md ├── asr ├── __init__.py └── model_map.py ├── cloudbuild.yaml ├── requirements.txt └── runtime.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pebble-dev/rebble-asr/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pebble-dev/rebble-asr/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pebble-dev/rebble-asr/HEAD/README.md -------------------------------------------------------------------------------- /asr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pebble-dev/rebble-asr/HEAD/asr/__init__.py -------------------------------------------------------------------------------- /asr/model_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pebble-dev/rebble-asr/HEAD/asr/model_map.py -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pebble-dev/rebble-asr/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pebble-dev/rebble-asr/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.6 2 | --------------------------------------------------------------------------------