Skip to content

Commit

Permalink
Fix broken links to SKLearn Server README (kubeflow#1449)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinbazira authored Mar 12, 2021
1 parent 0ef735f commit 0608c38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/samples/v1alpha2/sklearn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ clf.fit(X, y)
dump(clf, 'model.joblib')
```

Then, we can install and run the [SKLearn Server](../../../python/sklearnserver) using the generated model and test for prediction. Models can be on local filesystem, S3 compatible object storage, Azure Blob Storage, or Google Cloud Storage.
Then, we can install and run the [SKLearn Server](../../../../python/sklearnserver) using the generated model and test for prediction. Models can be on local filesystem, S3 compatible object storage, Azure Blob Storage, or Google Cloud Storage.

```shell
# we should indicate the directory containing the model file (model.joblib) by --model_dir
Expand Down Expand Up @@ -89,7 +89,7 @@ Expected Output

## Run SKLearn InferenceService with your own image
Since the KFServing SKLearnServer image is built from a specific version of `scikit-learn` pip package, sometimes it might not be compatible with the pickled model
you saved from your training environment, however you can build your own SKLearnServer image following [this instruction](../../../python/sklearnserver/README.md#building-your-own-scikit-learn-server-docker-image
you saved from your training environment, however you can build your own SKLearnServer image following [these instructions](../../../../python/sklearnserver/README.md#building-your-own-scikit-learn-server-docker-image
).

To use your SKLearnServer image:
Expand Down
4 changes: 2 additions & 2 deletions docs/samples/v1beta1/sklearn/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ clf.fit(X, y)
dump(clf, 'model.joblib')
```

Then, we can install and run the [SKLearn Server](../../../python/sklearnserver) using the generated model and test for prediction. Models can be on local filesystem, S3 compatible object storage, Azure Blob Storage, or Google Cloud Storage.
Then, we can install and run the [SKLearn Server](../../../../../python/sklearnserver) using the generated model and test for prediction. Models can be on local filesystem, S3 compatible object storage, Azure Blob Storage, or Google Cloud Storage.

```shell
# we should indicate the directory containing the model file (model.joblib) by --model_dir
Expand Down Expand Up @@ -89,7 +89,7 @@ Expected Output

## Run SKLearn InferenceService with your own image
Since the KFServing SKLearnServer image is built from a specific version of `scikit-learn` pip package, sometimes it might not be compatible with the pickled model
you saved from your training environment, however you can build your own SKLearnServer image following [this instruction](../../../python/sklearnserver/README.md#building-your-own-scikit-learn-server-docker-image
you saved from your training environment, however you can build your own SKLearnServer image following [these instructions](../../../../../python/sklearnserver/README.md#building-your-own-scikit-learn-server-docker-image
).

To use your SKLearnServer image:
Expand Down

0 comments on commit 0608c38

Please sign in to comment.