@@ -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