Hi,
I would like an advice or feeedback about PMML files loading.
Currently, we have several PMML files: 6 files with a size of 110MB per file.
Our web service need to load these files at startup in order to score some user data.
We use the following code to load the file:
PMMLEvaluatorFactory factory = new PMMLEvaluatorFactory();
PMMLEvaluator evaluator = factory .GetPMMLEvaluatorInstance("MyFile.pmml");
All is ok but I would like to know why the memory size of my application is so large:
iisexpress.exe grows to 2,870,996KB
Can we make something to reduce the memory size ?
Is it possible to load the file with another statement ?
Thank you a lot,