tree-detection-evo
tree-detection-evo copied to clipboard
What is some data type?
hello,Doc.! In your code, there has some Unexplained data like 'train_stats.npy'、'train_test.shp', would you tell me how it is like. And in 'from src.customnets import SimpleNet',there is no name cl in 'import src.customlayers as cl'. Please tell me how to solve it? God bless you!!!!!!!!
train_stats.npy
is a file that contains both mean and std for training data, used for normalizing the data. You have to get those for your own data, as unfortunately hyperspectral data varies so much (different number of bands, different bandwidths and central wavelengths etc...) that providing these metrics that always works is practically impossible. train_test.shp
just contains the train-test-split for our data.
Thanks for noticing that customlayers.py
was missing, I added that.
Please tell me how to build my own Training and verification data with code
Or,could you give a sample like this?
Thank you very much!!!