mirror of
				https://github.com/microsoft/autogen.git
				synced 2025-11-04 11:49:45 +00:00 
			
		
		
		
	* adding multiple choice * update test cases (hard coded) * merged common code in predict_proba and predict in TransformersEstimator
		
			
				
	
	
		
			14 lines
		
	
	
		
			315 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			315 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""!
 | 
						|
 * Copyright (c) 2020-2021 Microsoft Corporation. All rights reserved.
 | 
						|
 * Licensed under the MIT License.
 | 
						|
"""
 | 
						|
 | 
						|
N_SPLITS = 5
 | 
						|
RANDOM_SEED = 1
 | 
						|
SPLIT_RATIO = 0.1
 | 
						|
MEM_THRES = 4 * (1024 ** 3)
 | 
						|
SMALL_LARGE_THRES = 10000000
 | 
						|
MIN_SAMPLE_TRAIN = 10000
 | 
						|
CV_HOLDOUT_THRESHOLD = 100000
 | 
						|
SAMPLE_MULTIPLY_FACTOR = 4
 |