floodsung / LearningToCompare_FSL

PyTorch code for CVPR 2018 paper: Learning to Compare: Relation Network for Few-Shot Learning (Few-Shot Learning part)
MIT License
1.04k stars 267 forks source link

result of paper #26

Open LYF14020510036 opened 5 years ago

LYF14020510036 commented 5 years ago

def mean_confidence_interval(data, confidence=0.95): a = 1.0np.array(data) n = len(a) m, se = np.mean(a), scipy.stats.sem(a) h = se sp.stats.t._ppf((1+confidence)/2., n-1) return m,h

hello,could you tell me this h means? Volatility value of Paper Result ?

buaa-luzhi commented 5 years ago

@LYF14020510036 Do you know what h means? Thanks

kravrolens commented 3 years ago

Percent point function (inverse of cdf) at q of the given RV.