Hi Jean,
Below is the code where I am creating multiple processes:
if __name__ == '__main__':
# List all files in the games directory
files = list_sgf_files()
# Read board configurations
(intermediateBoards, finalizedBoards) = read_boards(files)
# Initialize parameters
Dear all,
I need some advice regarding use of the multiprocessing module.
Following is the scenario:
* I am running gradient descent to estimate parameters of a pairwise
grid CRF (or a grid based graphical model). There are 106 data
points. Each data point can be analyzed in parallel.