mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	fix: machine learning only take results with > 90% confidence (#1875)
This commit is contained in:
		@@ -45,11 +45,8 @@ def run_engine(engine, path):
 | 
			
		||||
 | 
			
		||||
    for index, pred in enumerate(predictions):
 | 
			
		||||
        tags = pred['label'].split(', ')
 | 
			
		||||
        if (index == 0):
 | 
			
		||||
            result = tags
 | 
			
		||||
        else:
 | 
			
		||||
            if (pred['score'] > 0.5):
 | 
			
		||||
                result = [*result, *tags]
 | 
			
		||||
        if (pred['score'] > 0.9):
 | 
			
		||||
            result = [*result, *tags]
 | 
			
		||||
 | 
			
		||||
    if (len(result) > 1):
 | 
			
		||||
        result = list(set(result))
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user