From 60d2757c36624e1ebdb1e904bc714a45ccbd187e Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 22 Apr 2024 18:40:28 +0200 Subject: [PATCH] Update router/src/config.rs --- router/src/config.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/router/src/config.rs b/router/src/config.rs index 8651ab14..88cde69a 100644 --- a/router/src/config.rs +++ b/router/src/config.rs @@ -88,7 +88,6 @@ impl LlavaNext { let patch_size = self.vision_config.patch_size; assert!(image_size % patch_size == 0); let npatches = image_size / patch_size; - println!("{npatches} {image_size} {patch_size}"); let (num_patch_height, num_patch_width) = get_anyres_image_grid_shape(height, width, &self.image_grid_pinpoints, image_size);