Skip to content

Commit 748f9d9

Browse files
committed
fix: Use Surogate as default training lib
1 parent 431e875 commit 748f9d9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/webapp/app/private/training/training/training.page.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,12 +198,12 @@ export class TrainingPage implements OnInit {
198198
instanceType: new FormControl<string | null>(null),
199199
kubeConfig: new FormControl<string | null>(null),
200200
useSpot: new FormControl<boolean>(false),
201-
useAxolotl: new FormControl<boolean>(true),
201+
useAxolotl: new FormControl<boolean>(false),
202202
numNodes: new FormControl<number>(1, [Validators.required]),
203-
gpusPerWorker: new FormControl<number>(2, [Validators.required]),
204-
headGpus: new FormControl<number>(2, [Validators.required]),
203+
gpusPerWorker: new FormControl<number>(1, [Validators.required]),
204+
headGpus: new FormControl<number>(1, [Validators.required]),
205205
useHeadAsWorker: new FormControl<boolean>(false, []),
206-
testVllmTp: new FormControl<number>(2, [Validators.required]),
206+
testVllmTp: new FormControl<number>(1, [Validators.required]),
207207
datasets: new FormArray<FormGroup>([], []),
208208
testDatasets: new FormArray<FormGroup>([], []),
209209
type: new FormControl<keyof typeof RayJobType>(null, []),

0 commit comments

Comments
 (0)