mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:27:09 -05:00 
			
		
		
		
	fix: machine learning only take results with > 90% confidence (#1875)
This commit is contained in:
		
							parent
							
								
									6c7679714b
								
							
						
					
					
						commit
						3d468c369c
					
				@ -45,10 +45,7 @@ def run_engine(engine, path):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    for index, pred in enumerate(predictions):
 | 
					    for index, pred in enumerate(predictions):
 | 
				
			||||||
        tags = pred['label'].split(', ')
 | 
					        tags = pred['label'].split(', ')
 | 
				
			||||||
        if (index == 0):
 | 
					        if (pred['score'] > 0.9):
 | 
				
			||||||
            result = tags
 | 
					 | 
				
			||||||
        else:
 | 
					 | 
				
			||||||
            if (pred['score'] > 0.5):
 | 
					 | 
				
			||||||
            result = [*result, *tags]
 | 
					            result = [*result, *tags]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (len(result) > 1):
 | 
					    if (len(result) > 1):
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user