08 2019 档案

摘要: 阅读全文
posted @ 2019-08-30 14:42 算法浪客 阅读(242) 评论(0) 推荐(0) 编辑
摘要:1、测试两个算法 #coding:utf-8 import time import numba import numpy as np ''' 使用numba加速总结, (1)、在数值计算比如int float double等类型计算时 使用numba进行加速,速度可加快,string类型数据不能使用 阅读全文
posted @ 2019-08-29 23:03 算法浪客 阅读(321) 评论(0) 推荐(0) 编辑
摘要:SELECT 某一列, COUNT( 某一列 ) FROM 表 GROUP BY 某一列 HAVING COUNT( 某一列 ) 〉1 阅读全文
posted @ 2019-08-29 16:37 算法浪客 阅读(1543) 评论(0) 推荐(0) 编辑
摘要:1、正则匹配 select CONCAT(TO_NUMBER(REGEXP_REPLACE('019年','[^0-9]')),'年') from dual; 阅读全文
posted @ 2019-08-28 17:17 算法浪客 阅读(680) 评论(0) 推荐(0) 编辑
摘要:1、Torch构建简单的模型 # coding:utf-8 import torch class Net(torch.nn.Module): def __init__(self,img_rgb=3,img_size=32,img_class=13): super(Net, self).__init_ 阅读全文
posted @ 2019-08-24 22:52 算法浪客 阅读(775) 评论(0) 推荐(0) 编辑
摘要:1、代码结构 1、创建 第一种 -- Create sequence create sequence SEQ_USERID minvalue 1 maxvalue 999999999999 start with 1 increment by 1 nocache cycle; 第二种 CREATE S 阅读全文
posted @ 2019-08-17 18:55 算法浪客 阅读(559) 评论(0) 推荐(0) 编辑
摘要:1、直接奉献代码,后期有入门更新,之前一直在学的是TensorFlow, import torch from torch.autograd import Variable import torch.nn.functional as F import matplotlib.pyplot as plt 阅读全文
posted @ 2019-08-16 22:56 算法浪客 阅读(2239) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/2ff8e6f98257 阅读全文
posted @ 2019-08-12 22:29 算法浪客 阅读(2202) 评论(0) 推荐(0) 编辑
摘要:https://github.com/amdegroot/ssd.pytorch 阅读全文
posted @ 2019-08-10 16:39 算法浪客 阅读(379) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/zhaoyini/p/join.html 阅读全文
posted @ 2019-08-09 08:21 算法浪客 阅读(255) 评论(0) 推荐(0) 编辑
摘要:1、两种方法如下链接 https://www.cnblogs.com/mtcnn/p/9411683.html 2、第一种方法: # coding: utf-8 # python base64 编解码,转换成Opencv,PIL.Image图片格式 import base64 import io f 阅读全文
posted @ 2019-08-06 21:18 算法浪客 阅读(2769) 评论(0) 推荐(0) 编辑
摘要:1、kettle资源丰富:kettle中文网 http://www.kettle.net.cn/category/use?tdsourcetag=s_pctim_aiomsg 阅读全文
posted @ 2019-08-03 11:28 算法浪客 阅读(419) 评论(0) 推荐(0) 编辑
摘要:1、下载 mysql8.0 驱动放到 如下目录中 mysql8.0以上的驱动下载链接:mysql-connet-8.0.13 2、配置你连接的数据库 找到如下文件打开编辑 连接信息:下面是我本地的配置 MYSQL8_DB/type=javax.sql.DataSource MYSQL8_DB/dri 阅读全文
posted @ 2019-08-03 11:22 算法浪客 阅读(12106) 评论(0) 推荐(3) 编辑
摘要:1、python连接数据库游标 # coding:utf-8 from sqlalchemy import create_engine class connet_databases: def __init__(self): ''' # 初始化数据库连接,使用pymysql模块 # MySQL的用户: 阅读全文
posted @ 2019-08-02 21:58 算法浪客 阅读(2701) 评论(0) 推荐(0) 编辑
摘要:1、 点击编辑图表 2、 参数传递 3、 选择分类名称 4、 钻取明细表获取 inputs 值得方法 使用公司 $inputs 获取钻取传来的值 阅读全文
posted @ 2019-08-02 17:25 算法浪客 阅读(2441) 评论(0) 推荐(0) 编辑
摘要:1、具体连接操作 首先将mysql-connector-java-8.0以上的jar包放到FindReport安装目录下的webapps下的WEB-INF下的lib下。 打开finereport,找到定义数据连接 数据库名:MySQL 驱动器:com.mysql.cj.jdbc.Driver URL 阅读全文
posted @ 2019-08-02 16:28 算法浪客 阅读(3916) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示