Skip to content

Commit

Permalink
Merge pull request #321 from golemfactory/ai-example-fix
Browse files Browse the repository at this point in the history
Update AI-on-golem-network.md
  • Loading branch information
cryptobench authored Sep 20, 2024
2 parents aea106f + 24d59db commit b665d0e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ try {
imageHash: '23ac8d8f54623ad414d70392e4e3b96da177911b0143339819ec1433', // ollama with qwen2:0.5b
minMemGib: 8,
capabilities: ['!exp:gpu', 'vpn'],
engine: 'vm-nvidia',
runtime: { name: 'vm-nvidia' },
},
},
market: {
Expand Down Expand Up @@ -422,7 +422,7 @@ demand: {
imageHash: '23ac8d8f54623ad414d70392e4e3b96da177911b0143339819ec1433', // ollama with qwen2:0.5b
minMemGib: 8,
capabilities: ['!exp:gpu', 'vpn'],
engine: 'vm-nvidia',
runtime: { name: "vm-nvidia" },
},
},
```
Expand All @@ -434,13 +434,13 @@ To request a provider with a GPU, you need to include the following options:

```js
capabilities: ['!exp:gpu', 'vpn'],
engine: 'vm-nvidia',
runtime: { name: "vm-nvidia" },
```

If you want to run a test on a CPU, you need to remove these lines or replace them with:

```js
engine: 'vm',
runtime: { name: "vm" },
```

{% alert level="danger" %}
Expand Down

0 comments on commit b665d0e

Please sign in to comment.