-
-
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
Signed-off-by: Gianluca Boiano <[email protected]>
- Loading branch information
Showing
15 changed files
with
212 additions
and
38 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
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
Oops, something went wrong.