Hot Plug Detection, DDC, and EDID DataPro Tech Info > Hot Plug Detection, DDC, and EDID Hot Plugging A convenient feature of most modern displays is t... ...
                            
                            
                                分类:
其他好文   时间:
2018-12-20 18:47:59   
                                阅读次数:
166
                             
                    
                        
                            
                            
                                1.卷积神经网络的激活函数--Relu 使用新的激活函数--Relu,公式如下: 2.卷积神经网络的网络架构:卷积层、Pooling层(也叫池化层)、全连接层 2.1卷积层的计算公式: 其中D为卷积层的深度 附:图像大小、步幅和卷积后的Feature Map大小关系: W、H:卷积前原图像的宽、高( ...
                            
                            
                                分类:
其他好文   时间:
2018-12-17 16:58:51   
                                阅读次数:
200
                             
                    
                        
                            
                            
                                Exploratory data analysis and feature extraction with Python 此图片是学习kaggle中某篇kernel时的思维导图,总结了python进行探索性数据分析和特征提取的基本方法和步骤,有可借鉴内容。 暂时无法找到全篇kernel的链接,若重新 ...
                            
                            
                                分类:
编程语言   时间:
2018-12-16 19:35:29   
                                阅读次数:
163
                             
                    
                        
                            
                            
                                    网上下载的c3ddotnetapiref.chm文件, 使用mshcMigrate工具(2.0.0.75)转换成mshc文件, 添加到help viewer 2.2中, 有时会遇到这样的错误: 选择是, 帮助文档能打开 但个别链接打不开: 例如上图中的Feature就打不开, 对比能打开的链接和不能... ...
                            
                            
                                分类:
其他好文   时间:
2018-12-15 21:06:27   
                                阅读次数:
228
                             
                    
                        
                            
                            
                                写不尽的 code,查不完的 bug 通常我们写 bug,哦,不对,写代码时总不会一帆风顺,往往各种 bug 充斥其中,即使测试有较高的代码覆盖率往往也会有漏网之鱼。能写出一些比较隐蔽或者看起来像 feature 的 bug,并且经过了测试、code review 等层层的考验,最终 merge 到主干,这也算的上是一种本事。
                            
                            
                                分类:
其他好文   时间:
2018-12-13 19:13:30   
                                阅读次数:
198
                             
                    
                        
                            
                            
                                1、泛型、泛型约束与扩展; 2、函数式编程; 3、值类型、引用类型; 4、枚举、关联值、元组等其他 上述为swift最大的特点 Another safety feature is that by default Swift objects can never be nil, and trying t ...
                            
                            
                                分类:
编程语言   时间:
2018-12-12 23:49:27   
                                阅读次数:
288
                             
                    
                        
                            
                            
                                    机器学习 特征工程 特征抽取 字典特征抽取 sklearn.feature_extraction.DictVectorizer 类DictVectorizer(sparse=True) 如果sparse=False 则返回列表 .fit_transform(X) X是字典或者包含字典的迭代器 返回s ...
                            
                            
                                分类:
其他好文   时间:
2018-12-11 01:42:02   
                                阅读次数:
299
                             
                    
                        
                            
                            
                                dict_keys(['data', 'target', 'feature_names', 'DESCR']) 506 rows × 13 columns [-0.12316272] 30.97867776261804 Out[51]: array([[1.00000e+00, 6.52000e+0 ...
                            
                            
                                分类:
其他好文   时间:
2018-12-10 14:15:16   
                                阅读次数:
150
                             
                    
                        
                            
                            
                                from sklearn.datasets import load_boston boston = load_boston() boston.keys() dict_keys(['data', 'target', 'feature_names', 'DESCR']) print(boston.DES... ...
                            
                            
                                分类:
其他好文   时间:
2018-12-10 14:06:41   
                                阅读次数:
183
                             
                    
                        
                            
                            
                                    1. 导入boston房价数据集 from sklearn.datasets import load_bostonboston = load_boston()boston.keys() print(boston.DESCR) boston.data.shape boston.feature_name ...
                            
                            
                                分类:
其他好文   时间:
2018-12-06 12:14:10   
                                阅读次数:
183