Skip to content

Commit

Permalink
Fix readme hyper links (#477)
Browse files Browse the repository at this point in the history
<!--  Thanks for sending a pull request!  Here are some tips for you:

1. Run unit tests and ensure that they are passing
2. If your change introduces any API changes, make sure to update the
e2e tests
3. Make sure documentation is updated for your PR!

-->

**What this PR does / why we need it**:
I just fixed links in the main readme file and also in the python jdk
readme file.

**Which issue(s) this PR fixes**:
<!--
*Automatically closes linked issue when PR is merged.
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
-->

Fixes #211 

**Does this PR introduce a user-facing change?**:
<!--
If no, just write "NONE" in the release-note block below.
If yes, a release note is required. Enter your extended release note in
the block below.
If the PR requires additional action from users switching to the new
release, include the string "action required".

For more information about release notes, see kubernetes' guide here:
http://git.k8s.io/community/contributors/guide/release-notes.md
-->

```release-note
NONE
```

**Checklist**

- [ ] Added unit test, integration, and/or e2e tests
- [ ] Tested locally
- [ ] Updated documentation
- [ ] Update Swagger spec if the PR introduce API changes
- [ ] Regenerated Golang and Python client if the PR introduce API
changes

---------

Co-authored-by: Arief Rahmansyah <[email protected]>
  • Loading branch information
aemzayn and ariefrahmansyah authored Nov 7, 2023
1 parent deb002d commit 76a7ff7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Merlin attempts to do so by:

## Getting Started

To install Merlin in your local machine, click [Local Development](./docs/getting-started/deploying-merlin/local_development.md).
To install Merlin in your local machine, click [Local Development](./docs/dev-guide/deploying-merlin/local_development.md).

## Documentation

Expand Down
10 changes: 5 additions & 5 deletions python/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ gcloud auth application-default login

The easiest way to get started is to explore example notebook:

1. [Deploying xgboost model](sample/xgboost/Sample.ipynb)
2. [Deploying sklearn model](sample/sklearn/Sample.ipynb)
3. [Deploying tensorflow model](sample/tensorflow/Sample.ipynb)
4. [Deploying pytorch model](sample/pytorch/Sample.ipynb)
5. [Deploying user defined model](sample/pyfunc/Sample.ipynb)
1. [Deploying xgboost model](../../examples/xgboost/XGBoost.ipynb)
2. [Deploying sklearn model](../../examples/sklearn/SKLearn.ipynb)
3. [Deploying tensorflow model](../../examples/tensorflow/Tensorflow.ipynb)
4. [Deploying pytorch model](../../examples/pytorch/Pytorch.ipynb)
5. [Deploying user defined model](../../examples/pyfunc/Pyfunc.ipynb)

# Development

Expand Down

0 comments on commit 76a7ff7

Please sign in to comment.