Skip to content

Commit

Permalink
chore: rewording
Browse files Browse the repository at this point in the history
Co-authored-by: Andy Méry <[email protected]>
  • Loading branch information
redanrd and cyclimse authored Nov 29, 2023
1 parent f17436e commit 26159c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jobs/ml-ops/container/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Deploy an inference API as a container
# Deploy an inference API on Scaleway Serverless Containers

## Step 1: Build and push API image to Scaleway's Registry

Expand Down
2 changes: 1 addition & 1 deletion jobs/ml-ops/container/inference-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.10.12

WORKDIR /tmp/ml-serving/
WORKDIR /app

COPY . .

Expand Down
2 changes: 1 addition & 1 deletion jobs/ml-ops/container/inference-api/data_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def clean_data(data: pd.DataFrame) -> pd.DataFrame:
def transform_data(data: pd.DataFrame) -> pd.DataFrame:
"""
This function handles the transformation of categorical variables of the dataset into 0/1 indicators.
It also adds mmissing categorical variables that are by default false (0).
It also adds missing categorical variables that are by default false (0).
"""

# # use the same category for basic education sub-categories
Expand Down

0 comments on commit 26159c3

Please sign in to comment.