210 lines
5.8 KiB
Go
210 lines
5.8 KiB
Go
|
package train
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"github.com/aws/aws-sdk-go-v2/aws"
|
||
|
"github.com/aws/aws-sdk-go-v2/service/s3"
|
||
|
"github.com/aws/aws-sdk-go-v2/service/sagemaker"
|
||
|
"github.com/aws/aws-sdk-go-v2/service/sagemaker/types"
|
||
|
"github.com/cyrilix/robocar-tools/pkg/data"
|
||
|
"io/fs"
|
||
|
"io/ioutil"
|
||
|
"log"
|
||
|
"strconv"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func New(bucketName string, ociImage, roleArn string) *Training {
|
||
|
return &Training{
|
||
|
config: mustLoadConfig(),
|
||
|
bucketName: bucketName,
|
||
|
ociImage: ociImage,
|
||
|
roleArn: roleArn,
|
||
|
prefixInput: prefixInput,
|
||
|
outputBucket: fmt.Sprintf("s3://%s/output", bucketName),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type Training struct {
|
||
|
config aws.Config
|
||
|
bucketName string
|
||
|
ociImage string
|
||
|
roleArn string
|
||
|
prefixInput string
|
||
|
outputBucket string
|
||
|
}
|
||
|
|
||
|
func (t *Training) TrainDir(ctx context.Context, jobName, basedir string, sliceSize int, outputModelFile string) error {
|
||
|
log.Printf("run training with data from %s\n", basedir)
|
||
|
archive, err := data.BuildArchive(basedir, sliceSize)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("unable to build data archive: %w", err)
|
||
|
}
|
||
|
log.Println("")
|
||
|
|
||
|
err = t.UploadArchive(ctx, archive)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("unable to upload data arrchive: %w", err)
|
||
|
}
|
||
|
log.Println("")
|
||
|
|
||
|
err = t.runTraining(
|
||
|
ctx,
|
||
|
jobName,
|
||
|
sliceSize,
|
||
|
120,
|
||
|
160,
|
||
|
)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("unable to run training: %w", err)
|
||
|
}
|
||
|
|
||
|
err = t.GetTrainingOutput(ctx, jobName, outputModelFile)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("unable to get output model file '%s': %w", outputModelFile, err)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func List(bucketName string) error {
|
||
|
|
||
|
pfxInput := prefixInput
|
||
|
|
||
|
// Create an Amazon S3 service client
|
||
|
client := s3.NewFromConfig(mustLoadConfig())
|
||
|
|
||
|
// Get the first page of results for ListObjectsV2 for a bucket
|
||
|
output, err := client.ListObjectsV2(context.TODO(), &s3.ListObjectsV2Input{
|
||
|
Bucket: aws.String(bucketName),
|
||
|
Prefix: &pfxInput,
|
||
|
})
|
||
|
if err != nil {
|
||
|
log.Fatal(err)
|
||
|
}
|
||
|
|
||
|
log.Println("first page results:")
|
||
|
for _, object := range output.Contents {
|
||
|
if *object.Key == pfxInput {
|
||
|
continue
|
||
|
}
|
||
|
log.Printf("key=%s size=%d", aws.ToString(object.Key), object.Size)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (t *Training) runTraining(ctx context.Context, jobName string, slideSize int, imgHeight, imgWidth int) error {
|
||
|
client := sagemaker.NewFromConfig(mustLoadConfig())
|
||
|
log.Printf("Start training job '%s'\n", jobName)
|
||
|
// TODO: check train data exist
|
||
|
jobOutput, err := client.CreateTrainingJob(
|
||
|
ctx,
|
||
|
&sagemaker.CreateTrainingJobInput{
|
||
|
EnableManagedSpotTraining: true,
|
||
|
AlgorithmSpecification: &types.AlgorithmSpecification{
|
||
|
TrainingInputMode: types.TrainingInputModeFile,
|
||
|
TrainingImage: aws.String(t.ociImage),
|
||
|
},
|
||
|
OutputDataConfig: &types.OutputDataConfig{
|
||
|
S3OutputPath: aws.String(t.outputBucket),
|
||
|
},
|
||
|
ResourceConfig: &types.ResourceConfig{
|
||
|
InstanceCount: 1,
|
||
|
InstanceType: types.TrainingInstanceTypeMlP2Xlarge,
|
||
|
VolumeSizeInGB: 1,
|
||
|
},
|
||
|
RoleArn: aws.String(t.roleArn),
|
||
|
StoppingCondition: &types.StoppingCondition{
|
||
|
MaxRuntimeInSeconds: 1800,
|
||
|
MaxWaitTimeInSeconds: aws.Int32(3600),
|
||
|
},
|
||
|
TrainingJobName: aws.String(jobName),
|
||
|
HyperParameters: map[string]string{
|
||
|
"sagemaker_region": "eu-west-1",
|
||
|
"slide_size": strconv.Itoa(slideSize),
|
||
|
"img_height": strconv.Itoa(imgHeight),
|
||
|
"img_width": strconv.Itoa(imgWidth),
|
||
|
},
|
||
|
InputDataConfig: []types.Channel{
|
||
|
{
|
||
|
ChannelName: aws.String("train"),
|
||
|
DataSource: &types.DataSource{
|
||
|
S3DataSource: &types.S3DataSource{
|
||
|
S3DataType: types.S3DataTypeS3Prefix,
|
||
|
S3Uri: aws.String(fmt.Sprintf("s3://%s/%s", t.bucketName, t.prefixInput)),
|
||
|
S3DataDistributionType: types.S3DataDistributionFullyReplicated,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
)
|
||
|
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("unable to run sagemeker job: %w", err)
|
||
|
}
|
||
|
|
||
|
for {
|
||
|
time.Sleep(30 * time.Second)
|
||
|
|
||
|
status, err := client.DescribeTrainingJob(
|
||
|
ctx,
|
||
|
&sagemaker.DescribeTrainingJobInput{
|
||
|
TrainingJobName: aws.String(jobName),
|
||
|
},
|
||
|
)
|
||
|
if err != nil {
|
||
|
log.Printf("unable to get status from ob %v: %v\n", jobOutput.TrainingJobArn, err)
|
||
|
continue
|
||
|
}
|
||
|
switch status.TrainingJobStatus {
|
||
|
case types.TrainingJobStatusInProgress:
|
||
|
log.Printf("job in progress: %v - %v - %v\n", status.TrainingJobStatus, status.SecondaryStatus, *status.SecondaryStatusTransitions[len(status.SecondaryStatusTransitions) - 1].StatusMessage)
|
||
|
continue
|
||
|
case types.TrainingJobStatusFailed:
|
||
|
return fmt.Errorf("job %s finished with status %v\n", jobName, status.TrainingJobStatus)
|
||
|
default:
|
||
|
log.Printf("job %s finished with status %v\n", jobName, status.TrainingJobStatus)
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (t *Training) GetTrainingOutput(ctx context.Context, jobName, outputFile string) error {
|
||
|
// Create an Amazon S3 service client
|
||
|
client := s3.NewFromConfig(t.config)
|
||
|
|
||
|
// Get the first page of results for ListObjectsV2 for a bucket
|
||
|
output, err := client.GetObject(
|
||
|
ctx,
|
||
|
&s3.GetObjectInput{
|
||
|
Bucket: aws.String(t.bucketName),
|
||
|
Key: aws.String(fmt.Sprintf("output/%s/model.tar.gz", jobName)),
|
||
|
},
|
||
|
)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("unable to get resource: %w", err)
|
||
|
}
|
||
|
content, err := ioutil.ReadAll(output.Body)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("unable read output content: %w", err)
|
||
|
}
|
||
|
err = ioutil.WriteFile(outputFile, content, fs.ModePerm)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("unable to write content to '%v': %w", outputFile, err)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func ListJob(ctx context.Context) error {
|
||
|
|
||
|
client := sagemaker.NewFromConfig(mustLoadConfig())
|
||
|
jobs, err := client.ListTrainingJobs(ctx, &sagemaker.ListTrainingJobsInput{})
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("unable to list trainings jobs: %w", err)
|
||
|
}
|
||
|
for _, job := range jobs.TrainingJobSummaries {
|
||
|
fmt.Printf("%s\t\t%s\n", *job.TrainingJobName, job.TrainingJobStatus)
|
||
|
}
|
||
|
return nil
|
||
|
}
|