Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

machine learning - AttributeError: 'StandardScaler' object has no attribute 'var_'

I get this error message attempting to use the .var_ and .mean_ attribute of StandardScaler from Sci-Kit Learn. I saw in another SO post that it is no longer supported in newer versions so I downloaded an older one and it did not work either.

question from:https://stackoverflow.com/questions/65894407/attributeerror-standardscaler-object-has-no-attribute-var

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

From offical documentation the attributes var_ and mean_ are still available on the latest stable version (0.24.1 at the time of this post).

Nevertheless to access var_ and mean_ which respectively returns variance value and mean value the scaler needs to be fitted to your data. Otherwise these attributes won't be available. Also be sure that Scaler parameters with_mean and with_std are set to True. e.g. :

data = [[0, 0], [0, 0], [1, 1], [1, 1]]
scaler = StandardScaler()
scaler.mean_ ---> AttributeError: 'StandardScaler' object has no attribute 'mean_'
scaler.fit(data)
scaler.mean_ ---> array([0.5, 0.5])

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...