recording changes, but this does not work anymore
Dependencies
- [2]
QPBH7QWCadded MLBaste for confusion matrix, f1, roc, must still remove freq tables - [3]
NMQCXLNGcatch up commit, about to do some work on prediction loop - [4]
NV7FXZ5Qfirst commit - [5]
E3Y55MPRadded perceptual colour maps and changed get_image_from_sample - [6]
ZGLDIQ4Grolled back reduced and bifurcated training set used to test models before going away - [7]
RBXUHIO2made somn small changes and reverted them mostly - [8]
3FAESP6Ncatch up with changes, mainly construct primary dataset - [9]
4BTZNCRMcatch up commit before starting work
Change contents
- edit in src/Train.jl at line 6
import MLBase - replacement in src/Train.jl at line 29
train("K1-9_original_set", 20, glob_pattern, true, 0.90, 64)train("K1-9_original_set", 2, glob_pattern, true, 0.90, 64) - replacement in src/Train.jl at line 52
images = glob(glob_pattern) #|> shuffle! |> x -> x[1:1000]images = glob(glob_pattern) |> shuffle! |> x -> x[1:10000] - replacement in src/Train.jl at line 85
label_to_index,label_to_index - replacement in src/Train.jl at line 257
function evaluate(m, d, c=classes)function evaluate(m, d, c) - replacement in src/Train.jl at line 260
pred = []actual = []pred = Int64[]actual = Int64[] - replacement in src/Train.jl at line 273
r=roc(actual, pred)r=MLBase.roc(actual, pred) - replacement in src/Train.jl at line 305
@time eval, vcm, vroc = evaluate(model, test)@time eval, vcm, vroc = evaluate(model, test, classes) - replacement in src/Train.jl at line 317
@time metric_train, train_confusion_matrix, train_roc = evaluate(model, train_sample)@time metric_train, train_confusion_matrix, train_roc = evaluate(model, train_sample, classes) - replacement in src/Train.jl at line 324
@time metric_test, test_confusion_matrix, test_roc = evaluate(model, test)@time metric_test, test_confusion_matrix, test_roc = evaluate(model, test, classes)