File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ class CLIPTokenizer {
76
76
const std::string UNK_TOKEN = " <|endoftext|>" ;
77
77
const std::string BOS_TOKEN = " <|startoftext|>" ;
78
78
const std::string EOS_TOKEN = " <|endoftext|>" ;
79
- const std::string PAD_TOEKN = " <|endoftext|>" ;
79
+ const std::string PAD_TOKEN = " <|endoftext|>" ;
80
80
81
81
const int UNK_TOKEN_ID = 49407 ;
82
82
const int BOS_TOKEN_ID = 49406 ;
@@ -922,4 +922,4 @@ struct CLIPTextModelRunner : public GGMLRunner {
922
922
}
923
923
};
924
924
925
- #endif // __CLIP_HPP__
925
+ #endif // __CLIP_HPP__
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ void print_params(SDParams params) {
138
138
printf (" stacked_id_embeddings_path: %s\n " , params.stacked_id_embeddings_path .c_str ());
139
139
printf (" input_id_images_path: %s\n " , params.input_id_images_path .c_str ());
140
140
printf (" style ratio: %.2f\n " , params.style_ratio );
141
- printf (" normzalize input image : %s\n " , params.normalize_input ? " true" : " false" );
141
+ printf (" normalize input image : %s\n " , params.normalize_input ? " true" : " false" );
142
142
printf (" output_path: %s\n " , params.output_path .c_str ());
143
143
printf (" init_img: %s\n " , params.input_path .c_str ());
144
144
printf (" control_image: %s\n " , params.control_image_path .c_str ());
Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ class StableDiffusionGGML {
265
265
266
266
LOG_INFO (" Weight type: %s" , ggml_type_name (model_wtype));
267
267
LOG_INFO (" Conditioner weight type: %s" , ggml_type_name (conditioner_wtype));
268
- LOG_INFO (" Diffsuion model weight type: %s" , ggml_type_name (diffusion_model_wtype));
268
+ LOG_INFO (" Diffusion model weight type: %s" , ggml_type_name (diffusion_model_wtype));
269
269
LOG_INFO (" VAE weight type: %s" , ggml_type_name (vae_wtype));
270
270
271
271
LOG_DEBUG (" ggml tensor size = %d bytes" , (int )sizeof (ggml_tensor));
You can’t perform that action at this time.
0 commit comments