Mr_Hmp
Mr_Hmp

Reputation: 2535

How to increase the cpu utilisation of a process in windows 8

I am doing a project for my college using WEKA, I am classifying a very large text file(300MB). But it is a very slow process.

I looked in the task manager and I saw that weka uses only 10% of the cpu, and overall cpu utilization is around 13%. I want to increase weka's cpu utilsation. I already set the priority of weka as 'high'.

Any ideas how can I do that? enter image description here

Upvotes: 4

Views: 1390

Answers (1)

iwtu
iwtu

Reputation: 1569

If you are training (train data set), weka uses 10-fold cross validation by default. Weka Explorer or command line does all folds in single thread. It is possible to execute each fold on thread separately by using GUI Weka KnowledgeFlow. This would be the easiest way in you case. However, each folds can be distributed to others computer so the each fold can be executed on different machine. For more information about fold distribution see Weka-Parallel.

Upvotes: 1

Related Questions