small change to clips
Dependencies
- [2]
UTM4NN57changes that were left on linux - [3]
DKJKJ3LKcorrected clips to resample to 8000Hz - [4]
7KO4BAOGTidy up - [5]
QA2TJZRAripped ML out into the SkraakML repo, compiles quicker now - [6]
X54TLSYEcatch up commit, train now working with julia 1.10.5 but not 1.11 - [7]
ROFI4OLAcatch up, working on colour images - [*]
2UBDFCJHnew files tracked
Change contents
- edit in src/Clips.jl at line 88
if size(signal, 2) == 2signal = (signal[:, 1] + signal[:, 2]) / 2end - replacement in src/Clips.jl at line 379
make_clips_generic(file, 1, Flora1_K1-2-ST, false)make_clips_generic(file, 1, "Kahurangi3_03threshold", true) - replacement in src/Clips.jl at line 393
pth = split(preds_path, "/") |> x -> joinpath(x[1:end-1]) |> x -> x * "/"pth0 = split(preds_path, "/")length(pth0) > 1 ? (pth = joinpath(pth0[1:end-1]) * "/") : pth = "" - replacement in src/Clips.jl at line 416
start_times =v[!, :start_time] |> x ->dropmissing(x, disallowmissing = true) |> ######CHECK used to make cobb worksort#@info (file_name, extension)start_times = v.start_time |> x ->convert(Vector{Float64}, x) |>#dropmissing(x, disallowmissing = true) |> ######CHECK used to make cobb work. not working anymore, but convert works fine. This happens because the col type of dataframe is Float64? even though no missings, seems to ony happen with doc recorderssort - replacement in src/Clips.jl at line 425
if freq > 16000if size(signal, 2) == 2signal = (signal[:, 1] + signal[:, 2]) / 2endif freq > 8000 - replacement in src/Clips.jl at line 442
f = "Clips_$id_$(today())"f = "Clips_$(id)_$(today())"