本文整理匯總了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)))
示例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
示例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)))