Skip to content
Open
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
11 changes: 3 additions & 8 deletions docs/getting_started/clustering/clustering.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,23 +110,18 @@ The great thing about using cuML's HDBSCAN implementation is that it supports ma
However, it is still possible to calculate the topic-document probability matrix for the data on which the model was trained (i.e., `.fit` and `.fit_transform`).

!!! note
To install cuML with BERTopic, run these commands:
To install cuML with BERTopic, run one of these commands:

**For CUDA 12:**
```bash
!pip install cuml-cu12
!pip install bertopic
!pip install bertopic cuml-cu12
```

**For CUDA 13:**
```bash
!pip install cuml-cu13
!pip install bertopic
!pip install bertopic cuml-cu13
```

!!! warning
Install cuML first, then BERTopic. Installing both in a single command can fail due to pip resolver limitations with CUDA runtime dependencies.

**Note:** cuML is already installed on Google Colab.

For more detailed information on installing cuML, including additional dependencies and platform-specific instructions, see the [RAPIDS installation guide](https://docs.rapids.ai/install/).
11 changes: 3 additions & 8 deletions docs/getting_started/dim_reduction/dim_reduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,23 +97,18 @@ topic_model = BERTopic(umap_model=umap_model)
```

!!! note
To install cuML with BERTopic, run these commands:
To install cuML with BERTopic, run one of these commands:

**For CUDA 12:**
```bash
!pip install cuml-cu12
!pip install bertopic
!pip install bertopic cuml-cu12
```

**For CUDA 13:**
```bash
!pip install cuml-cu13
!pip install bertopic
!pip install bertopic cuml-cu13
```

!!! warning
Install cuML first, then BERTopic. Installing both in a single command can fail due to pip resolver limitations with CUDA runtime dependencies.

**Note:** cuML is already installed on Google Colab.

For more detailed information on installing cuML, including additional dependencies and platform-specific instructions, see the [RAPIDS installation guide](https://docs.rapids.ai/install/).
Expand Down
11 changes: 3 additions & 8 deletions docs/getting_started/tips_and_tricks/tips_and_tricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,23 +181,18 @@ embeddings = normalize(embeddings)
However, it is still possible to calculate the topic-document probability matrix for the data on which the model was trained (i.e., `.fit` and `.fit_transform`).

!!! note
To install cuML with BERTopic, run these commands:
To install cuML with BERTopic, run one of these commands:

**For CUDA 12:**
```bash
!pip install cuml-cu12
!pip install bertopic
!pip install bertopic cuml-cu12
```

**For CUDA 13:**
```bash
!pip install cuml-cu13
!pip install bertopic
!pip install bertopic cuml-cu13
```

!!! warning
Install cuML first, then BERTopic. Installing both in a single command can fail due to pip resolver limitations with CUDA runtime dependencies.

**Note:** cuML is already installed on Google Colab.

For more detailed information on installing cuML, including additional dependencies and platform-specific instructions, see the [RAPIDS installation guide](https://docs.rapids.ai/install/).
Expand Down
Loading