mirror of
https://github.com/microsoft/autogen.git
synced 2025-10-30 17:29:47 +00:00
* version update post release v1.2.2 * automl option * import pandas * remove automl.utils * default * test * type hint and version update * dependency update * link to open in colab * use packging.version to close #725 --------- Co-authored-by: Li Jiang <lijiang1@microsoft.com> Co-authored-by: Li Jiang <bnujli@gmail.com>
16 lines
376 B
Python
16 lines
376 B
Python
"""!
|
|
* Copyright (c) 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
|
|
SEARCH_THREAD_EPS = 1.0
|
|
PENALTY = 1e10 # penalty term for constraints
|