-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add support for python3.13 (#512)
* Add support for python3.13 init templates * skip linting until until runtime is GA * Change unit test class base to python313
- Loading branch information
Showing
260 changed files
with
10,819 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Cookiecutter Machine Learning Inference API project | ||
|
||
This is a cookiecutter template using [Serverless Application Model (SAM)](https://github.com/awslabs/serverless-application-model) to create a simple handwritten digit classifier deployed as an API. | ||
|
||
## Requirements | ||
|
||
* [AWS SAM CLI](https://github.com/awslabs/aws-sam-cli) | ||
|
||
## Usage | ||
|
||
Generate a boilerplate template in your current project directory using the following syntax: | ||
|
||
`sam init` | ||
|
||
> **NOTE**: ``--name`` allows you to specify a different project folder name (`sam-app` is the default) | ||
|
||
# Credits | ||
|
||
* This project has been generated with [Cookiecutter](https://github.com/audreyr/cookiecutter) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"project_name": "digit_classifier", | ||
"pytorch_version": "2.0.0", | ||
"torchvision_version": "0.15.1", | ||
"api_path": "/classify_digit", | ||
"architectures": { | ||
"value": [ | ||
"x86_64", "arm64" | ||
] | ||
}, | ||
"_copy_without_render": [ | ||
".gitignore" | ||
], | ||
"__stack_name": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[install] | ||
prefix= |
Oops, something went wrong.