jkahn117 / ml-classification-books-on-tape

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ml-classification-books-on-tape

Training Data

  1. Download audio books from http://www.openculture.com/freeaudiobooks
  2. Selected:
  3. Upload to Amazon S3

SageMaker Execution Role Policy

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:PutObject",
                "s3:GetObject",
                "s3:ListBucket",
                "s3:DeleteObject"
            ],
            "Resource": "arn:aws:s3:::*"
        },
        {
            "Effect": "Allow",
            "Action": [
                "s3:GetObject",
                "s3:ListBucket"
            ],
            "Resource": "arn:aws:s3:::ml-classification-books-on-tape"
        },
        {
            "Effect": "Allow",
            "Action": "transcribe:StartTranscriptionJob",
            "Resource": "*"
        }
    ]
}

About

License:Apache License 2.0


Languages

Language:Jupyter Notebook 100.0%