Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
In order to use Pytorch and applying basic deep learning examples we are going to use a pre-configured docker instance. This will help us getting a ready to use environment.
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "An auto-generated nested stack.", | |
| "Metadata": {}, | |
| "Parameters": { | |
| "AppSyncApiId": { | |
| "Type": "String", | |
| "Description": "The id of the AppSync API associated with this project." | |
| }, | |
| "AppSyncApiName": { |
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "An auto-generated nested stack.", | |
| "Metadata": {}, | |
| "Parameters": { | |
| "AppSyncApiId": { | |
| "Type": "String", | |
| "Description": "The id of the AppSync API associated with this project." | |
| }, | |
| "AppSyncApiName": { |
| --- | |
| AWSTemplateFormatVersion: 2010-09-09 | |
| Parameters: | |
| GitHubOrg: | |
| Type: String | |
| OIDCProviderArn: | |
| Description: Arn for the GitHub OIDC Provider. | |
| Default: '' | |
| Type: String | |
| Conditions: |
| name: Deploy 🚀 | |
| on: | |
| push: | |
| branches: | |
| - main # Set a branch to deploy | |
| jobs: | |
| build-push-image: | |
| runs-on: ubuntu-latest |