File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ We'll start by setting up our cluster with the environment and compute configura
83
83
- Project: `madewithml`
84
84
- Cluster environment name: `madewithml-cluster-env`
85
85
# Toggle `Select from saved configurations`
86
- - Compute config: `madewithml-cluster-compute`
86
+ - Compute config: `madewithml-cluster-compute-g5.4xlarge `
87
87
```
88
88
89
89
> Alternatively, we can use the [ CLI] ( https://docs.anyscale.com/reference/anyscale-cli ) to create the workspace via ` anyscale workspace create ... `
@@ -423,7 +423,7 @@ anyscale cluster-env build deploy/cluster_env.yaml --name $CLUSTER_ENV_NAME
423
423
The compute configuration determines ** what** resources our workloads will be executes on. We've already created this [ compute configuration] ( ./deploy/cluster_compute.yaml ) for us but this is how we can create it ourselves.
424
424
425
425
``` bash
426
- export CLUSTER_COMPUTE_NAME=" madewithml-cluster-compute"
426
+ export CLUSTER_COMPUTE_NAME=" madewithml-cluster-compute-g5.4xlarge "
427
427
anyscale cluster-compute create deploy/cluster_compute.yaml --name $CLUSTER_COMPUTE_NAME
428
428
```
429
429
Original file line number Diff line number Diff line change 1
- cloud : madewithml -us-east -2
2
- region : us-east2
1
+ cloud : education -us-west -2
2
+ region : us-west-2
3
3
head_node_type :
4
4
name : head_node_type
5
- instance_type : m5.2xlarge # 8 CPU, 0 GPU, 32 GB RAM
5
+ instance_type : g5.4xlarge
6
6
worker_node_types :
7
7
- name : gpu_worker
8
- instance_type : g4dn.xlarge # 4 CPU, 1 GPU, 16 GB RAM
9
- min_workers : 0
8
+ instance_type : g5.4xlarge
9
+ min_workers : 1
10
10
max_workers : 1
11
11
use_spot : False
12
12
aws :
Original file line number Diff line number Diff line change 1
- base_image : anyscale/ray:2.6.0 -py310-cu118
1
+ base_image : anyscale/ray:2.7.0optimized -py310-cu118
2
2
env_vars : {}
3
3
debian_packages :
4
4
- curl
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
export PYTHONPATH=$PYTHONPATH :$PWD
3
- export RAY_AIR_REENABLE_DEPRECATED_SYNC_TO_HEAD_NODE=1
4
3
mkdir results
5
4
6
5
# Test data
You can’t perform that action at this time.
0 commit comments