Instructions to use bglick13/hopper-medium-v2-value-function-hor32 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use bglick13/hopper-medium-v2-value-function-hor32 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("bglick13/hopper-medium-v2-value-function-hor32", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update unet/config.json
Browse files- unet/config.json +1 -1
unet/config.json
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"down_block_types": ["DownResnetBlock1D", "DownResnetBlock1D", "DownResnetBlock1D", "DownResnetBlock1D"], "block_out_channels": [32, 64, 128, 256], "up_block_types": ["UpResnetBlock1D", "UpResnetBlock1D", "UpResnetBlock1D"], "layers_per_block": 1, "use_timestep_embedding": true, "out_block_type": "OutConv1DBlock", "norm_num_groups": 8, "downsample_each_block": false, "in_channels": 14, "out_channels": 14, "extra_in_channels": 0, "time_embedding_type": "positional", "flip_sin_to_cos": false, "freq_shift": 1, "sample_size": 65536, "mid_block_type": "MidResTemporalBlock1D", "act_fn": "mish", "
|
|
|
|
| 1 |
+
{"down_block_types": ["DownResnetBlock1D", "DownResnetBlock1D", "DownResnetBlock1D", "DownResnetBlock1D"], "block_out_channels": [32, 64, 128, 256], "up_block_types": ["UpResnetBlock1D", "UpResnetBlock1D", "UpResnetBlock1D"], "layers_per_block": 1, "use_timestep_embedding": true, "out_block_type": "OutConv1DBlock", "norm_num_groups": 8, "downsample_each_block": false, "in_channels": 14, "out_channels": 14, "extra_in_channels": 0, "time_embedding_type": "positional", "flip_sin_to_cos": false, "freq_shift": 1, "sample_size": 65536, "mid_block_type": "MidResTemporalBlock1D", "act_fn": "mish", "mid_block_layers": 1}
|