We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccaefa6 commit 6b21012Copy full SHA for 6b21012
README.md
@@ -1,15 +1,21 @@
1
-How to train a simple sklearn model, pickle it, and build an API with fastapi.
+En este repositorio vamos a:
2
3
-Deployment to AWS will be covered in the future.
+ 1. Entrenar un modelo de sklearn
4
+
5
+ 2. Exportarlo usando pickle
6
7
+ 3. Construir una API con FastAPI
8
9
+ 4. Desplegar la API usando un contendor de Docker
10
-To follow this post, you should be familiar with:
-
-1. Scikit-learn
-2. Docker
-3. Basics of an API
11
-# Training the model
+# Instrucciones
12
13
+```
14
+git clone https://github.com/albertotb/sklearn_fastapi_docker.git
15
+cd sklearn_fastapi_docker
16
+docker build -t myapi .
17
+docker run -d --name myapicontainer -p 80:80 myapi
18
19
20
# Referencias
21
0 commit comments