07 2021 档案
摘要:想查看数据库现有所有表名,并清空临时表,可利用以下命令: -- 查看Sysbase IQ数据库所有表名 select name from sysobjects where type = 'U' and name like '%temp%' 最后将表名全部 drop 掉即可。 drop table a
阅读全文
摘要:之前跑完模型保存都是通过以下脚本保存。 # 保存模型 from sklearn.externals import joblib joblib.dump(model_lgb, r"E:\model.pkl") # 导出 # model_lgb = joblib.load(r"E:\model.pkl"
阅读全文