Skip to content

Commit

Permalink
fix(contributing, readme): all 101 links go to 101.jina.ai (#1965)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcg1 committed Feb 18, 2021
1 parent 439aa24 commit f03a8b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ In this guide, we're going to go through the steps for each kind of contribution
<a name="-before-you-start"></a>
## 🏁 Before you Start

Make sure you've read through our [README](https://github.com/jina-ai/jina), [Jina 101](https://github.com/jina-ai/docs/tree/master/chapters/101), and [example tutorials](https://learn.jina.ai) so you have a good understanding of what Jina is and how it works.
Make sure you've read through our [README](https://github.com/jina-ai/jina), [Jina 101](https://101.jina.ai), and [example tutorials](https://learn.jina.ai) so you have a good understanding of what Jina is and how it works.

### Not a coder but still want to contribute?

Expand Down Expand Up @@ -279,7 +279,7 @@ Good docs make developers happy, and we love happy developers! We've got a few d

#### General Documentation

This covers files like [Jina 101](https://github.com/jina-ai/docs/tree/master/chapters/101), [Input and Output Functions](https://docs.jina.ai/chapters/io/index.html), etc.
This covers files like [Jina 101](https://101.jina.ai), [Input and Output Functions](https://docs.jina.ai/chapters/io/index.html), etc.

These are typically written in Markdown, though some may be in RestructuredText.

Expand Down
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ with Flow().add() as f, open('output.txt', 'w') as fp:
#### Add Logic
<a href="https://mybinder.org/v2/gh/jina-ai/jupyter-notebooks/main?filepath=basic-add-logic.ipynb"><img align="right" src="https://github.com/jina-ai/jina/blob/master/.github/badges/run-badge.svg?raw=true"/></a>

To add logic to the Flow, use the `uses` parameter to attach a Pod with an [Executor](https://101.jina.ai/#executors). `uses` accepts multiple value types including class name, Docker image, (inline) YAML or built-in shortcut.
To add logic to the Flow, use the `uses` parameter to attach a Pod with an [Executor](https://101.jina.ai/#executor). `uses` accepts multiple value types including class name, Docker image, (inline) YAML or built-in shortcut.


```python
Expand Down Expand Up @@ -624,7 +624,7 @@ class MyEncoder(BaseImageEncoder):
return (data.reshape([-1, 784]) / 255) @ self.oth_mat
```

Jina provides [a family of `Executor` classes](https://github.com/jina-ai/jina/tree/master/docs/chapters/101#the-executor-family), which summarize frequently-used algorithmic components in neural search. This family consists of encoders, indexers, crafters, evaluators, and classifiers, each with a well-designed interface. You can find the list of [all 107 built-in executors here](https://docs.jina.ai/chapters/all_exec.html). If they don't meet your needs, inheriting from one of them is the easiest way to bootstrap your own Executor. Simply use our Jina Hub CLI:
Jina provides [a family of `Executor` classes](https://101.jina.ai/#executor), which summarize frequently-used algorithmic components in neural search. This family consists of encoders, indexers, crafters, evaluators, and classifiers, each with a well-designed interface. You can find the list of [all 107 built-in executors here](https://docs.jina.ai/chapters/all_exec.html). If they don't meet your needs, inheriting from one of them is the easiest way to bootstrap your own Executor. Simply use our Jina Hub CLI:


```bash
Expand Down Expand Up @@ -793,14 +793,6 @@ This creates a Python entrypoint, YAML configs and a Dockerfile. You can start f
</td>
<td width="75%">
&nbsp;&nbsp;<h3><a href="https://101.jina.ai">Jina 101: First Things to Learn About Jina</a></h3>
&nbsp;&nbsp;<a href="https://github.com/jina-ai/docs/tree/master/chapters/101">English</a> •
<a href="https://github.com/jina-ai/docs/tree/master/chapters/101/README.ja.md">日本語</a> •
<a href="https://github.com/jina-ai/docs/tree/master/chapters/101/README.fr.md">Français</a> •
<a href="https://github.com/jina-ai/docs/tree/master/chapters/101/README.pt.md">Português</a> •
<a href="https://github.com/jina-ai/docs/tree/master/chapters/101/README.de.md">Deutsch</a> •
<a href="https://github.com/jina-ai/docs/tree/master/chapters/101/README.ru.md">Русский язык</a> •
<a href="https://github.com/jina-ai/docs/tree/master/chapters/101/README.zh.md">中文</a> •
<a href="https://github.com/jina-ai/docs/tree/master/chapters/101/README.ar.md">عربية</a>
</td>

</tr>
Expand Down

0 comments on commit f03a8b4

Please sign in to comment.