摘要: 生成随机数文件,确保每次都有差别 # 设置文件路径 $filePath = "C:\Users\random_numbers.txt" # 无限循环 while ($true) { # 生成随机数 $randomNumber = Get-Random # 获取当前时间戳 $timestamp = G 阅读全文
posted @ 2024-10-09 08:43 元気な猫 阅读(6) 评论(0) 推荐(0) 编辑
摘要: import moviepy.editor as mp import os if __name__ == "__main__": # 指定文件目录 current_address = r"C:\Users\dumpling\Desktop\音乐\周杰伦" # 获取指定目录下的所有文件 file_li 阅读全文
posted @ 2024-09-20 10:59 元気な猫 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 做深度学习时,为了减少空间占用,会在拍照时使用heic格式,但是labelimg不能识别这个格式,所以还要转成jpg。 搜了一圈没有合适的,怒写这份代码 from PIL import Image import pillow_heif import piexif from glob import g 阅读全文
posted @ 2024-09-19 15:47 元気な猫 阅读(55) 评论(0) 推荐(0) 编辑
摘要: ubuntu 18.04 ,自带python3.6,mysql 5.7 Nginx******************************* 1. 安装nginx apt-get update apt-get upgrade apt-get install nginx 2. 修改端口为81(可选 阅读全文
posted @ 2024-09-19 15:34 元気な猫 阅读(34) 评论(1) 推荐(0) 编辑
摘要: import tensorflow as tf import numpy as np import matplotlib.pyplot as plt """ 1. shape: 矩阵维度 3*2 =================== 2. [None,1]: N行 1列 =================== 3. numpy.random.normal(loc=0.0, scale=1.0... 阅读全文
posted @ 2019-08-25 09:01 元気な猫 阅读(569) 评论(0) 推荐(0) 编辑
摘要: 本例使用numpy和TensorFlow。 numpy用来生成1000个x轴的坐标点,然后定义一个函数 y=0.1225x+0.8843 这样就生成了xdata和ydata. 然后使用逐次逼近(y-ydata)^2=0的状态,拟合曲线。 optimizer是一个优化器,可以理解成机器的学习速率,后面 阅读全文
posted @ 2019-08-24 14:47 元気な猫 阅读(144) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xuecanmeng/p/7382975.html 阅读全文
posted @ 2019-08-07 21:52 元気な猫 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 话不多说,直接看代码--这里是写入文件的,想看写入MySQL的往下猛翻。 更新 写入MySQL(使用pymsql库),总共105295条记录。 注意 阅读全文
posted @ 2019-08-05 16:09 元気な猫 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 天天生鲜项目 1. 认识电商 1.1 B2B--企业对企业 B2B ( Business to Business)是指进行电子商务交易的供需双方都是商家(或企业、 公司),她(他)们使用了互联网的技术或各种商务网络平台,完成商务交易的过程。电子 商务是现代 B2B marketing 的一种具体主要 阅读全文
posted @ 2019-08-03 11:02 元気な猫 阅读(641) 评论(0) 推荐(0) 编辑
摘要: 分页: 当前页-5 当前页 当前页+5 起始页 结束页 half=5 起始页小于0:加入判断,当前页-5<=0,固定当前页 阅读全文
posted @ 2019-06-04 14:12 元気な猫 阅读(93) 评论(0) 推荐(0) 编辑