On 11 March 2013 14:57, Abhinav M Kulkarni wrote:
> 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, fina
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
On 03/11/2013 01:57 AM, Abhinav M Kulkarni wrote:
* My laptop has quad-core Intel i5 processor, so I thought using
multiprocessing module I can parallelize my code (basically
calculate gradient in parallel on multiple cores simultaneously).
* As a result I end up creating a
- Original Message -
> 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 po
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.