https://github.com/codelibs/recotem-batch-example
https://github.com/codelibs/recotem-batch-example
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codelibs/recotem-batch-example
- Owner: codelibs
- Created: 2021-09-18T07:38:02.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-07T05:06:11.000Z (over 3 years ago)
- Last Synced: 2025-01-28T10:36:19.056Z (5 months ago)
- Language: Shell
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Recotem Batch Example
## Overview
This repository is a reference implementation for Batch processing to create a model for Recotem.
## Getting Started
You can clone this repository:
```
$ git clone https://github.com/codelibs/recotem-batch-example.git
```and modify files for your project.
- `app/run.sh`: a main script file
- `app/create_data.*`: script files to create training data
- `app/save_model.sh`: a script file to save/upload a model file### Build Docker Image
```
$ docker-compose -f docker-compose.yml build
```### Run Batch Process
```
$ docker-compose -f docker-compose.yml up --abort-on-container-exit
```## Others
### Deploy On AWS ECS
This repository contains a manifest file for AWS Copilot.
You can deploy this batch project as Schedule Task for ECS.```
$ copilot init -a recotem-batch-example -d ./Dockerfile -n backend --schedule "@daily" -t "Scheduled Job" --deploy
```