-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add tiny dream stable diffusion support (#1283)
Signed-off-by: Gianluca Boiano <[email protected]>
- Loading branch information
Showing
13 changed files
with
161 additions
and
30 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
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
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
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
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
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,21 @@ | ||
package main | ||
|
||
// Note: this is started internally by LocalAI and a server is allocated for each model | ||
|
||
import ( | ||
"flag" | ||
|
||
grpc "github.com/go-skynet/LocalAI/pkg/grpc" | ||
) | ||
|
||
var ( | ||
addr = flag.String("addr", "localhost:50051", "the address to connect to") | ||
) | ||
|
||
func main() { | ||
flag.Parse() | ||
|
||
if err := grpc.StartServer(*addr, &Image{}); err != nil { | ||
panic(err) | ||
} | ||
} |
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,32 @@ | ||
package main | ||
|
||
// This is a wrapper to statisfy the GRPC service interface | ||
// It is meant to be used by the main executable that is the server for the specific backend type (falcon, gpt3, etc) | ||
import ( | ||
"github.com/go-skynet/LocalAI/pkg/grpc/base" | ||
pb "github.com/go-skynet/LocalAI/pkg/grpc/proto" | ||
"github.com/go-skynet/LocalAI/pkg/tinydream" | ||
) | ||
|
||
type Image struct { | ||
base.SingleThread | ||
tinydream *tinydream.TinyDream | ||
} | ||
|
||
func (image *Image) Load(opts *pb.ModelOptions) error { | ||
var err error | ||
// Note: the Model here is a path to a directory containing the model files | ||
image.tinydream, err = tinydream.New(opts.ModelFile) | ||
return err | ||
} | ||
|
||
func (image *Image) GenerateImage(opts *pb.GenerateImageRequest) error { | ||
return image.tinydream.GenerateImage( | ||
int(opts.Height), | ||
int(opts.Width), | ||
int(opts.Step), | ||
int(opts.Seed), | ||
opts.PositivePrompt, | ||
opts.NegativePrompt, | ||
opts.Dst) | ||
} |
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
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
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
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,36 @@ | ||
//go:build tinydream | ||
// +build tinydream | ||
|
||
package tinydream | ||
|
||
import ( | ||
"fmt" | ||
"path/filepath" | ||
|
||
tinyDream "github.com/M0Rf30/go-tiny-dream" | ||
) | ||
|
||
func GenerateImage(height, width, step, seed int, positive_prompt, negative_prompt, dst, asset_dir string) error { | ||
fmt.Println(dst) | ||
if height > 512 || width > 512 { | ||
return tinyDream.GenerateImage( | ||
1, | ||
step, | ||
seed, | ||
positive_prompt, | ||
negative_prompt, | ||
filepath.Dir(dst), | ||
asset_dir, | ||
) | ||
} | ||
|
||
return tinyDream.GenerateImage( | ||
0, | ||
step, | ||
seed, | ||
positive_prompt, | ||
negative_prompt, | ||
filepath.Dir(dst), | ||
asset_dir, | ||
) | ||
} |
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,10 @@ | ||
//go:build !tinydream | ||
// +build !tinydream | ||
|
||
package tinydream | ||
|
||
import "fmt" | ||
|
||
func GenerateImage(height, width, step, seed int, positive_prompt, negative_prompt, dst, asset_dir string) error { | ||
return fmt.Errorf("This version of LocalAI was built without the tinytts tag") | ||
} |
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,20 @@ | ||
package tinydream | ||
|
||
import "os" | ||
|
||
type TinyDream struct { | ||
assetDir string | ||
} | ||
|
||
func New(assetDir string) (*TinyDream, error) { | ||
if _, err := os.Stat(assetDir); err != nil { | ||
return nil, err | ||
} | ||
return &TinyDream{ | ||
assetDir: assetDir, | ||
}, nil | ||
} | ||
|
||
func (td *TinyDream) GenerateImage(height, width, step, seed int, positive_prompt, negative_prompt, dst string) error { | ||
return GenerateImage(height, width, step, seed, positive_prompt, negative_prompt, dst, td.assetDir) | ||
} |