Open Zeroo11 opened 7 months ago
Hello, I ran the code according to SDMtune's tutorial (https://consbiol-unibern.github.io/SDMtune/):
# Train a Maxnet model model <- train(method = "Maxnet", data = train)
It works fine.
But training the model a second time:
# Train a Maxent model sdmtune_model <- train(method = "Maxent", data = data)
A crash occurs.
I also tested another tutorial (https://consbiol-unibern.github.io/SDMtune/articles/train-model.html):
default_model <- train(method = "Maxent", data = data)
Also crashes.
How can I solve this problem?
Looking forward to your answer, thank you very much!
LinLin
library(SDMtune)
A crash occurs
No response
Hi @Zeroo11
The only thing I see that is different here is that in the first attempt you ran the model directly in the R script, in the other two attempts you used a markdown file, right? Maybe this is the problem.
Describe the bug
Hello, I ran the code according to SDMtune's tutorial (https://consbiol-unibern.github.io/SDMtune/):
It works fine.
But training the model a second time:
A crash occurs.
I also tested another tutorial (https://consbiol-unibern.github.io/SDMtune/articles/train-model.html):
Also crashes.
How can I solve this problem?
Looking forward to your answer, thank you very much!
LinLin
Steps to reproduce the bug
Session information
Additional information
No response
Reproducible example