Spaces:
Sleeping
Sleeping
Clement Vachet
commited on
Commit
·
8f37ccc
1
Parent(s):
d9387b6
docs: improve style
Browse files
README.md
CHANGED
@@ -12,7 +12,16 @@ short_description: IRIS Classification Lambda
|
|
12 |
|
13 |
# IRIS classification task with AWS Lambda
|
14 |
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
based on measurements of physical characteristics (sepals and petals).
|
17 |
|
18 |
<b>Architecture:</b>
|
@@ -87,7 +96,7 @@ Example: ```iris-classification-lambda```
|
|
87 |
|
88 |
- Optional for aws cli configuration (to run above commands):
|
89 |
> aws configure
|
90 |
-
|
91 |
- Authenticate Docker client to the Amazon ECR registry
|
92 |
> aws ecr get-login-password --region <aws_region> | docker login --username AWS --password-stdin <aws_account_id>.dkr.ecr.<aws_region>.amazonaws.com
|
93 |
|
@@ -105,7 +114,7 @@ Example: ```iris-classification-lambda```
|
|
105 |
|
106 |
<details>
|
107 |
|
108 |
-
<b>Steps</b>:
|
109 |
- Create function from container image
|
110 |
|
111 |
Example name: ```iris-classification```
|
@@ -130,7 +139,7 @@ Advanced notes:
|
|
130 |
|
131 |
<details>
|
132 |
|
133 |
-
<b>Steps</b>:
|
134 |
- Create a new ```Rest API``` (e.g. ```iris-classification-api```)
|
135 |
- Add a new resource to the API (e.g. ```/classify```)
|
136 |
- Add a ```POST``` method to the resource
|
|
|
12 |
|
13 |
# IRIS classification task with AWS Lambda
|
14 |
|
15 |
+
[![](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
|
16 |
+
[![Docker Pulls](https://img.shields.io/docker/pulls/cvachet/iris-classification-lambda)](https://hub.docker.com/repository/docker/cvachet/iris-classification-lambda)
|
17 |
+
[![code style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
|
18 |
+
|
19 |
+
|
20 |
+
![example workflow](https://github.com/clementsan/iris_classification_lambda/actions/workflows/ci_python.yml/badge.svg)
|
21 |
+
![example workflow](https://github.com/clementsan/iris_classification_lambda/actions/workflows/publish_docker_image.yml/badge.svg)
|
22 |
+
![example workflow](https://github.com/clementsan/iris_classification_lambda/actions/workflows/sync_HFSpace.yml/badge.svg)
|
23 |
+
|
24 |
+
<b>Aims:</b> Categorization of different species of iris flowers (Setosa, Versicolor, and Virginica)
|
25 |
based on measurements of physical characteristics (sepals and petals).
|
26 |
|
27 |
<b>Architecture:</b>
|
|
|
96 |
|
97 |
- Optional for aws cli configuration (to run above commands):
|
98 |
> aws configure
|
99 |
+
|
100 |
- Authenticate Docker client to the Amazon ECR registry
|
101 |
> aws ecr get-login-password --region <aws_region> | docker login --username AWS --password-stdin <aws_account_id>.dkr.ecr.<aws_region>.amazonaws.com
|
102 |
|
|
|
114 |
|
115 |
<details>
|
116 |
|
117 |
+
<b>Steps</b>:
|
118 |
- Create function from container image
|
119 |
|
120 |
Example name: ```iris-classification```
|
|
|
139 |
|
140 |
<details>
|
141 |
|
142 |
+
<b>Steps</b>:
|
143 |
- Create a new ```Rest API``` (e.g. ```iris-classification-api```)
|
144 |
- Add a new resource to the API (e.g. ```/classify```)
|
145 |
- Add a ```POST``` method to the resource
|