-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
57474e5
commit d0f1bfa
Showing
4 changed files
with
279 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package project | ||
|
||
// Returns default model name for the example model type | ||
func getDefaultModelName(modelType string) string { | ||
switch modelType { | ||
case "LLM": | ||
return "google/flan-t5-base" | ||
case "Stable Diffusion": | ||
return "stabilityai/sdxl-turbo" | ||
case "Text to Audio": | ||
return "facebook/musicgen-small" | ||
} | ||
|
||
return "" | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.