上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: Tensorflow是Google推出的机器学习开源神器,对Python有着良好的语言支持,支持CPU,GPU和Google TPU等硬件,并且已经拥有了各种各样的模型和算法。目前,Tensorflow已被广泛应用于文本处理,语音识别和图像识别等多项机器学习和深度学习领域。 阅读全文
posted @ 2020-06-08 21:08 *人丑就该多读书* 阅读(3629) 评论(0) 推荐(1) 编辑
摘要: # coding: utf-8 import pymssql import csv import datetime from file2zip import * # from send_email import * import plugs.FileHelper as fileHelper from 阅读全文
posted @ 2020-05-09 18:16 *人丑就该多读书* 阅读(1072) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import sys import os.path import zipfile defaultencoding = 'utf-8' # if sys.getdefaultencoding() != defaultencoding: # reload( 阅读全文
posted @ 2020-05-09 18:10 *人丑就该多读书* 阅读(1174) 评论(0) 推荐(1) 编辑
摘要: import argparse import smtplib, mimetypes from email.mime.application import MIMEApplication from email.mime.multipart import MIMEMultipart from email 阅读全文
posted @ 2020-05-09 14:57 *人丑就该多读书* 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 直接用pip install pymssql 安装 ,报错: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.从google上查到别人的解决 阅读全文
posted @ 2020-04-29 15:14 *人丑就该多读书* 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/neo-T/p/6430583.html OpenCV已经帮我们做了,我们只需调用对应的API函数即可,先给出代码: 1 # -*- coding: utf-8 -*- 2 3 ##关键字无法关闭 摄像头,可能是代码缩进问题。显示图像 在for 阅读全文
posted @ 2020-03-29 22:48 *人丑就该多读书* 阅读(233) 评论(0) 推荐(0) 编辑
摘要: string strTripID = string.Join(",", model.TripList.Select(s => "'" + s.TripID + "'")); var togetherList = itogetheremployeeservice.GetTogetherEmployee 阅读全文
posted @ 2020-03-10 14:07 *人丑就该多读书* 阅读(780) 评论(0) 推荐(0) 编辑
摘要: 转自: https://blog.csdn.net/qq_42370150/article/details/92782779 阅读全文
posted @ 2020-03-01 19:39 *人丑就该多读书* 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 1 # pip install flask. 导入import flask 2 import traceback 3 from flask import Flask, render_template, request 4 import requests 5 import datetime 6 7 ' 阅读全文
posted @ 2020-03-01 19:37 *人丑就该多读书* 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 做另一张表的统计,比如本部门有多少在职人员。本岗位有多少女生。 有两个表,分别存放了【操作员】和【单据】,要根据单据的不同类型来分类汇总(销售单、销售退货单,笔数和金额),并且显示在同一张表里,不想用做两次查询再合并的方法,研究了一下,终于搞定: d_employee表 d_bilndx表 代码如下 阅读全文
posted @ 2020-02-17 14:45 *人丑就该多读书* 阅读(1661) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页