|
5 |
adding nltk tag
|
||
|
4 | added 1 characters in body | ||
|
I have a python module that makes use of a huge dictionary global variable, currently I put the computation code in the top section, every first time import or reload of the module takes more then one minute which is totally unacceptable. How can I save the computation result somewhere so that the next import/reload doesn't have to compute it? I tried cPickle, but loading the dictionary variable from a file(1.3M) takes approximately the same time as computation. To give more information about my problem,
|
||||
|
3 | added 155 characters in body | ||
How to avoid computation every time a python module is importedreloadedI have a python module that makes use of a huge dictionary global variable, currently I put the computation code in the top section, every first time this module is imported import or reload of the heavy computation module takes more then one minute which is totally unacceptable. How can I save the computation result somewhere so that the next import import/reload doesn't have to compute it? I tried cPickle, but loading the dictionary variable from a file(1.3M) takes approximately the same time as computation. To give more information about my problem,
|
||||
|
2 | deleted 1 characters in body | ||
|
1 |
|
||
