Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: more disk space #280

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 5 additions & 5 deletions presets/models/mistral/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ func init() {
}

var (
PresetMistral7BModel = "mistral-7b"
PresetMistral7BInstructModel = PresetMistral7BModel + "-instruct"
PresetMistral7BModel = "mistral-7b"
PresetMistral7BInstructModel = PresetMistral7BModel + "-instruct"

PresetMistralTagMap = map[string]string{
"Mistral7B": "0.0.2",
"Mistral7BInstruct": "0.0.2",
"Mistral7B": "0.0.2",
"Mistral7BInstruct": "0.0.2",
}

baseCommandPresetMistral = "accelerate launch"
Expand All @@ -46,7 +46,7 @@ func (*mistral7b) GetInferenceParameters() *model.PresetInferenceParam {
return &model.PresetInferenceParam{
ModelFamilyName: "Mistral",
ImageAccessMode: string(kaitov1alpha1.ModelImageAccessModePublic),
DiskStorageRequirement: "50Gi",
DiskStorageRequirement: "100Gi",
GPUCountRequirement: "1",
TotalGPUMemoryRequirement: "14Gi",
PerGPUMemoryRequirement: "0Gi", // We run Mistral using native vertical model parallel, no per GPU memory requirement.
Expand Down
6 changes: 3 additions & 3 deletions presets/models/phi/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ func init() {
}

var (
PresetPhi2Model = "phi-2"
PresetPhi2Model = "phi-2"

PresetPhiTagMap = map[string]string{
"Phi2": "0.0.1",
"Phi2": "0.0.1",
}

baseCommandPresetPhi = "accelerate launch"
Expand All @@ -40,7 +40,7 @@ func (*phi2) GetInferenceParameters() *model.PresetInferenceParam {
return &model.PresetInferenceParam{
ModelFamilyName: "Phi",
ImageAccessMode: string(kaitov1alpha1.ModelImageAccessModePublic),
DiskStorageRequirement: "30Gi",
DiskStorageRequirement: "50Gi",
GPUCountRequirement: "1",
TotalGPUMemoryRequirement: "12Gi",
PerGPUMemoryRequirement: "0Gi", // We run Phi using native vertical model parallel, no per GPU memory requirement.
Expand Down
Loading