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

Small doc fixes #648

Merged
merged 1 commit into from
Nov 20, 2023
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pipeline:
- Data ingestion: _S3, GCS, ABS, Hugging Face, local file system, ..._
- Data Filtering: _Duplicates, language, visual style, topic, format, aesthetics, NSFW, license,
..._
- Data Enrichment: _Captions, segmentations, smbeddings, ..._
- Data Enrichment: _Captions, segmentations, embeddings, ..._
- Data Transformation: _Image cropping, image resizing, text chunking, ...._
- Data retrieval: _Common Crawl, LAION, ..._

Expand Down
4 changes: 0 additions & 4 deletions docs/documentation_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,6 @@ how you can use it to your advantage.
Learn how to contribute to the Fondant project through
our [contribution guidelines](contributing.md).

## FAQ

Browse through the [frequently asked questions](faq.md) about Fondant.

## Announcements

Check out our latest [announcements] about Fondant.
Expand Down
58 changes: 33 additions & 25 deletions docs/guides/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,41 +10,49 @@ Fondant also includes extra dependencies for specific runners, storage integrati

### Runner specific dependencies

For Kubeflow runner:
```bash
pip install fondant[kfp]
```
=== "Kubeflow"

For SageMaker runner:
```bash
pip install fondant[SageMaker]
```
```bash
pip install fondant[kfp]
```

For Vertex runner:
```bash
pip install fondant[Vertex]
```
=== "Vertex"

```python
pip install fondant[Vertex]
```

=== "SageMaker"

```python
pip install fondant[SageMaker]
```

### Storage integration dependencies

For google cloud storage (GCS):
```bash
pip install fondant[gcp]
```
=== "Google Cloud Storage (GCS)"

For s3 storage:
```bash
pip install fondant[aws]
```
```bash
pip install fondant[gcp]
```

=== "Amazon S3"

```python
pip install fondant[aws]
```

=== "Azure Blob Storage"

```python
pip install fondant[azure]
```

For Azure storage:
```bash
pip install fondant[azure]
```

### Publishing components dependencies

For publishing components to registries:
For publishing components to registries:

```bash
pip install fondant[docker]
```
Expand Down
Loading