Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “Here, let’s use the controlnet-openpose-sdxl-1.0
open pose ControlNet for SDXL.”
A block of code is set as follows:
import torch from diffusers import StableDiffusionPipeline # load model text2img_pipe = StableDiffusionPipeline.from_pretrained( "stablediffusionapi/deliberate-v2", torch_dtype = torch.float16 ).to("cuda:0")
Any command-line input or output is written as follows:
$ pip install pandas
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “After clicking the Run button, the progress bar will appear in the position of the output textbox.”
Tips or important notes
Appear like this.