【TensorFlow】踩坑记
文章目录 1. tf.estimator.BoostedTreesRegressor 1. tf.estimator.BoostedTreesRegressor Error: For now , only support Numeric column with shape less than 2 , but column `estimator_features` got : ( 1 , 234 ) 运行环境: tf . __version__ == '1.14.0' 源码: /tensorflow_estimator/python/estimator/canned/boosted_trees.py def _get_transformed_features_and_merge_with_previously_transformed ( . . . ) : . . . for column in all_sorted_columns : . . . elif isinstance ( column , ( feature_column_lib . NumericColumn , fc_old . _NumericColumn ) ) : source_name = column . name tensor = transformed_features [ column ] #