當前位置: 首頁>>代碼示例>>Python>>正文


Python utils.shuffler方法代碼示例

本文整理匯總了Python中utils.shuffler方法的典型用法代碼示例。如果您正苦於以下問題:Python utils.shuffler方法的具體用法?Python utils.shuffler怎麽用?Python utils.shuffler使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在utils的用法示例。


在下文中一共展示了utils.shuffler方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_shuffler

# 需要導入模塊: import utils [as 別名]
# 或者: from utils import shuffler [as 別名]
def test_shuffler(self):
        random.seed(1)
        dataset = (i for i in range(10))
        shuffled = list(utils.shuffler(
            dataset, pool_size=5, refill_threshold=0.8))
        self.assertEqual(len(shuffled), 10)
        self.assertNotEqual(shuffled, list(range(10))) 
開發者ID:mlperf,項目名稱:training_results_v0.5,代碼行數:9,代碼來源:test_utils.py

示例2: split_test_training

# 需要導入模塊: import utils [as 別名]
# 或者: from utils import shuffler [as 別名]
def split_test_training(positions_w_context, est_num_positions):
    print("Estimated number of chunks: %s" % (est_num_positions // CHUNK_SIZE), file=sys.stderr)
    desired_test_size = 10**5
    if est_num_positions < 2 * desired_test_size:
        positions_w_context = list(positions_w_context)
        test_size = len(positions_w_context) // 3
        return positions_w_context[:test_size], [positions_w_context[test_size:]]
    else:
        shuffled_positions = utils.shuffler(positions_w_context)
        test_chunk = utils.take_n(desired_test_size, shuffled_positions)
        training_chunks = utils.iter_chunks(CHUNK_SIZE, shuffled_positions)
        return test_chunk, training_chunks 
開發者ID:llSourcell,項目名稱:alphago_demo,代碼行數:14,代碼來源:load_data_sets.py

示例3: test_shuffler

# 需要導入模塊: import utils [as 別名]
# 或者: from utils import shuffler [as 別名]
def test_shuffler(self):
    random.seed(1)
    dataset = (i for i in range(10))
    shuffled = list(utils.shuffler(
        dataset, pool_size=5, refill_threshold=0.8))
    self.assertEqual(len(shuffled), 10)
    self.assertNotEqual(shuffled, list(range(10))) 
開發者ID:itsamitgoel,項目名稱:Gun-Detector,代碼行數:9,代碼來源:utils_test.py


注:本文中的utils.shuffler方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。