-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can dmn be run in parts? #7
Comments
I wonder how big your data is? Also I wonder if the long running time is due to the size of the data or some other limitation, e.g., memory use. Also is there something to do upstream to make the data smaller, e.g., some kind of dimensional reduction before doing the 'full' analysis; I have not worked in this space for a while so don't know if that is a good idea or not. |
I've got quite a large dataset I want to analyse with
dmn
. Running it withfit <- mclapply(1:20, dmn, count=count, verbose=TRUE)
on my desktop did not complete within 30 days (using all 4 cores). Probably power outage cancelled calculations as the system was reloaded. I divided the dataset into parts and run it also on a server. Some parts were finished but there is a 7-days limit and some needed more time. I would prefer to run the data as a full dataset.
Can I replace
fit <- mclapply(1:20, dmn, count=count, verbose=TRUE)
with
How to combine
fit1
(1:7),fit2
(8:14), andfit3
(15:20) intofit
(1:20) ?The text was updated successfully, but these errors were encountered: