-
-
Notifications
You must be signed in to change notification settings - Fork 429
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump version to 0.1.0 * export prompt fix (#552) * Force face selection mode (#553) * Force face selection mode * Add validation * Move history to scene * Update advanced presets * Fix depth model check * Review changes --------- Co-authored-by: NullSenseStudio <[email protected]>
- Loading branch information
1 parent
c3f3a37
commit 057d780
Showing
18 changed files
with
160 additions
and
96 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
import bpy | ||
prompt = bpy.context.scene.dream_textures_prompt | ||
|
||
prompt.precision = 'auto' | ||
prompt.random_seed = True | ||
prompt.seed = '0' | ||
prompt.steps = 25 | ||
prompt.steps = 20 | ||
prompt.cfg_scale = 7.5 | ||
prompt.sampler_name = 'k_lms' | ||
prompt.show_steps = True | ||
prompt.scheduler = 'DPM Solver Multistep' | ||
prompt.step_preview_mode = 'Accurate' | ||
prompt.optimizations_attention_slicing = True | ||
prompt.optimizations_attention_slice_size_src = 'auto' | ||
prompt.optimizations_attention_slice_size = 1 | ||
prompt.optimizations_cudnn_benchmark = False | ||
prompt.optimizations_tf32 = False | ||
prompt.optimizations_amp = False | ||
prompt.optimizations_half_precision = True | ||
prompt.optimizations_sequential_cpu_offload = False | ||
prompt.optimizations_channels_last_memory_format = False | ||
prompt.optimizations_batch_size = 1 | ||
prompt.optimizations_vae_slicing = True | ||
prompt.optimizations_cpu_only = False |
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 |
---|---|---|
@@ -1,10 +1,19 @@ | ||
import bpy | ||
prompt = bpy.context.scene.dream_textures_prompt | ||
|
||
prompt.precision = 'auto' | ||
prompt.random_seed = True | ||
prompt.seed = '0' | ||
prompt.steps = 50 | ||
prompt.cfg_scale = 7.5 | ||
prompt.sampler_name = 'k_lms' | ||
prompt.show_steps = False | ||
prompt.scheduler = 'DPM Solver Multistep' | ||
prompt.step_preview_mode = 'Fast' | ||
prompt.optimizations_attention_slicing = True | ||
prompt.optimizations_attention_slice_size_src = 'auto' | ||
prompt.optimizations_attention_slice_size = 1 | ||
prompt.optimizations_cudnn_benchmark = False | ||
prompt.optimizations_tf32 = False | ||
prompt.optimizations_amp = False | ||
prompt.optimizations_half_precision = True | ||
prompt.optimizations_sequential_cpu_offload = False | ||
prompt.optimizations_channels_last_memory_format = False | ||
prompt.optimizations_batch_size = 1 | ||
prompt.optimizations_vae_slicing = True | ||
prompt.optimizations_cpu_only = False |
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 |
---|---|---|
@@ -1,10 +1,19 @@ | ||
import bpy | ||
prompt = bpy.context.scene.dream_textures_prompt | ||
|
||
prompt.precision = 'auto' | ||
prompt.random_seed = True | ||
prompt.seed = '0' | ||
prompt.steps = 25 | ||
prompt.steps = 20 | ||
prompt.cfg_scale = 7.5 | ||
prompt.sampler_name = 'k_lms' | ||
prompt.show_steps = False | ||
prompt.scheduler = 'DPM Solver Multistep' | ||
prompt.step_preview_mode = 'Fast' | ||
prompt.optimizations_attention_slicing = True | ||
prompt.optimizations_attention_slice_size_src = 'auto' | ||
prompt.optimizations_attention_slice_size = 1 | ||
prompt.optimizations_cudnn_benchmark = False | ||
prompt.optimizations_tf32 = False | ||
prompt.optimizations_amp = False | ||
prompt.optimizations_half_precision = True | ||
prompt.optimizations_sequential_cpu_offload = False | ||
prompt.optimizations_channels_last_memory_format = False | ||
prompt.optimizations_batch_size = 1 | ||
prompt.optimizations_vae_slicing = True | ||
prompt.optimizations_cpu_only = False |
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
Oops, something went wrong.