Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos #837

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed docs/art/guides/component.png
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/components/component_spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ dataset.

Each field defines the expected data type, which should match the
[types defined by Fondant](https://github.com/ml6team/fondant/blob/main/src/fondant/core/schema.py),
that correespond to [Arrow data types](https://arrow.apache.org/docs/python/api/datatypes.html).
that correspond to [Arrow data types](https://arrow.apache.org/docs/python/api/datatypes.html).

Note that you can always map a field from your dataset with a different name to a specific field name expected by the
component provided they have the same data type. For example, suppose we have a component spec that
Expand Down
4 changes: 2 additions & 2 deletions docs/components/containerized_components.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ with a simpler [lightweight components](../components/lightweight_components.md)

To make sure containerized components are reusable, they should implement a single logical data
processing
step (like captioning images or removing Personal Identifiable Information [PII] from text.)
step (like captioning images or removing Personal Identifiable Information [PII] from text).
If a component grows too large, consider splitting it into multiple separate components each
tackling one logical part.

Expand All @@ -38,7 +38,7 @@ script.

Note that the `main.py` script can be split up into several Python scripts in case it would become
prohibitively long. See the
[prompt based LAION retrieval component](https://github.com/ml6team/fondant/tree/main/components/prompt_based_laion_retrieval/src)
[prompt based LAION retrieval component](https://github.com/ml6team/fondant/tree/main/components/retrieve_laion_by_prompt/src)
as an example: the CLIP client itself is defined in a separate script called `clip_client`,
which is then imported in the `main.py` script.

Expand Down
Loading