04 2019 档案

摘要:$ git init #把当前目录变成git可以管理的仓库 $ git add readme.txt #添加一个文件,也可以添加文件夹 $ git add -A #添加全部文件 $ git commit -m "some commit" #提交修改 $ git status #查看是否还有未提交 $ 阅读全文
posted @ 2019-04-08 18:03 gavincc 阅读(599) 评论(0) 推荐(0)
摘要:#标准化 sc=StandardScaler() sc.fit(X_train)#计算样本的均值和标准差 X_train_std=sc.transform(X_train) X_test_std=sc.transform(X_test) #逻辑斯蒂回归 lr=LogisticRegression(C 阅读全文
posted @ 2019-04-04 14:11 gavincc 阅读(220) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2019-04-04 14:05 gavincc 阅读(116) 评论(0) 推荐(0)