Discussion of article "Deep Neural Networks (Part VIII). Increasing the classification quality of bagging ensembles" - page 2
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Обсуждение и вопросы по коду можно сделать в ветке
Удачи
Обсуждение и вопросы по коду можно сделать в ветке
Удачи
Обсуждение и вопросы по коду можно сделать в ветке
Удачи
Discussion and questions on the code can be done in the branch
Good luck
After choosing the best 7 ensembles and classifying it[=1,0,1] ,I would like to extract the data to train it on a Keras model, but I can't seem to find the specific dataframes.
Figure 11 shows the structural scheme of calculations. Above each stage is the name of the script. Under each stage is the name of the resulting data structure. What data do you want to use?
If you want to use the averaged continuous predictions of the seven best ensembles, then they are in the structure
k = c(origin/repaired/removed/relabeled)
j = c( half, mean, med, both)
If you need the predictions of the seven best in binary form, then they are in the structure
Hello again,
I am getting the following errors, which I cant resolve - any tips?
Error 1: "in { : task 1 failed - "object 'History' not found" , when I run the following code segment:
#---OptPar------ evalq({ foreach(i = 1:4) %do% { OPT_Res[[i]] %$% History %>% dp$arrange(desc(Value)) %>% head(3) } -> best.res names(best.res) <- group }, env) evalq({ foreach(i = 1:4) %do% { OPT_Res1[[i]] %$% History %>% dp$arrange(desc(Value)) %>% head(3) } -> best.res1 names(best.res1) <- group }, env)Not sure where the History object is created, and couldnt find it at all in the github repo in the various .R files for this article
Error 2: "Yts" not found, when I run the following code segment:
Also not sure when/how the "Yts" is being created
I think both of these might be resolved by a piece of code that may be missing from the github repo?
Would appreciate any help you can provide, many thanks in advance