mirror of
				https://github.com/facebookresearch/sam2.git
				synced 2025-11-04 11:32:12 +08:00 
			
		
		
		
	fix: correct spelling
Corrected two instances of "a even number" to "an even number" for correct article usage before a vowel sound.
This commit is contained in:
		
							parent
							
								
									82b026cd55
								
							
						
					
					
						commit
						f882beb157
					
				@ -223,8 +223,8 @@ std::vector<torch::Tensor> get_connected_componnets(
 | 
			
		||||
  const uint32_t W = inputs.size(3);
 | 
			
		||||
 | 
			
		||||
  AT_ASSERTM(C == 1, "inputs must be [N, 1, H, W] shape");
 | 
			
		||||
  AT_ASSERTM((H % 2) == 0, "height must be a even number");
 | 
			
		||||
  AT_ASSERTM((W % 2) == 0, "width must be a even number");
 | 
			
		||||
  AT_ASSERTM((H % 2) == 0, "height must be an even number");
 | 
			
		||||
  AT_ASSERTM((W % 2) == 0, "width must be an even number");
 | 
			
		||||
 | 
			
		||||
  // label must be uint32_t
 | 
			
		||||
  auto label_options =
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user