DeepImage-an-Image-to-Image-technology icon indicating copy to clipboard operation
DeepImage-an-Image-to-Image-technology copied to clipboard

DeepNude's algorithm and general image generation theory and practice research, including pix2pix, CycleGAN, UGATIT, DCGAN, SinGAN, ALAE, mGANprior, StarGAN-v2 and VAE models (TensorFlow2 implementati...

Results 17 DeepImage-an-Image-to-Image-technology issues
Sort by recently updated
recently updated
newest added

https://github.com/trimstray/the-book-of-secret-knowledge/blob/master/.github/FUNDING.yml

## Feature Request **Is your feature request related to a problem? Please describe:** Yes **Describe the feature you'd like:** Release tags and binary for failpoint. **Describe alternatives you've considered:** Create...

the definition in the source code about Value's type in "github.com/pingcap/failpoint/failpoint.go" ``` // Value represents value that retrieved from failpoint terms. // It can be used as following types: //...

question

## Feature Request **Is your feature request related to a problem? Please describe:** When writing a unit test, I want to know if a failpoint is evaluated and the evaluated...

I write this in **foo.go**: ``` func pingCapFail() (string, failpoint.Value) { failpoint.Inject("failpoint-name", func(val failpoint.Value) { failpoint.Return("unit-test", val) }) return "success", nil } ``` and i run ` failpoint-ctl enable `...

question

## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? If possible, provide a recipe for reproducing the error. For example, we have...

bug

I cannot have any idea that how to use failpoint. I tried write demo like this: ``` var outerVar = "declare in outer scope" err := failpoint.Enable("failpoint-name", "return") if err...

question