2021-09-07 16:38:34 +08:00
|
|
|
import argparse
|
|
|
|
import pickle
|
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
deck = []
|
|
|
|
for i in range(3, 15):
|
2021-12-05 12:03:30 +08:00
|
|
|
deck.extend([i for _ in range(8)])
|
|
|
|
deck.extend([17 for _ in range(8)])
|
|
|
|
deck.extend([20, 20, 30, 30])
|
2021-09-07 16:38:34 +08:00
|
|
|
|
|
|
|
def get_parser():
|
|
|
|
parser = argparse.ArgumentParser(description='DouZero: random data generator')
|
|
|
|
parser.add_argument('--output', default='eval_data', type=str)
|
|
|
|
parser.add_argument('--num_games', default=10000, type=int)
|
|
|
|
return parser
|
|
|
|
|
|
|
|
def generate():
|
|
|
|
_deck = deck.copy()
|
|
|
|
np.random.shuffle(_deck)
|
2021-12-05 12:03:30 +08:00
|
|
|
card_play_data = {'landlord': _deck[:33],
|
|
|
|
'landlord_up': _deck[33:58],
|
|
|
|
'landlord_front': _deck[58:83],
|
|
|
|
'landlord_down': _deck[83:108],
|
|
|
|
# 'three_landlord_cards': _deck[25:33],
|
2021-09-07 16:38:34 +08:00
|
|
|
}
|
|
|
|
for key in card_play_data:
|
|
|
|
card_play_data[key].sort()
|
|
|
|
return card_play_data
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
flags = get_parser().parse_args()
|
|
|
|
output_pickle = flags.output + '.pkl'
|
|
|
|
|
|
|
|
print("output_pickle:", output_pickle)
|
|
|
|
print("generating data...")
|
|
|
|
|
|
|
|
data = []
|
|
|
|
for _ in range(flags.num_games):
|
|
|
|
data.append(generate())
|
|
|
|
|
|
|
|
print("saving pickle file...")
|
|
|
|
with open(output_pickle,'wb') as g:
|
|
|
|
pickle.dump(data,g,pickle.HIGHEST_PROTOCOL)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|