上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 43 下一页
摘要: 原理:pyautogui + opencv进行图片识别,然后进行操作.所以记得装 pip install opencv-python import pyautogui import pyperclip pyautogui.PAUSE = 1#每次延迟1秒 pyautogui.FAILSAFE=Tru 阅读全文
posted @ 2024-04-16 17:38 朝阳1 阅读(261) 评论(0) 推荐(1) 编辑
摘要: import ( "context" "encoding/json" "fmt" "github.com/elastic/go-elasticsearch/v8" "github.com/elastic/go-elasticsearch/v8/esapi" "github.com/elastic/g 阅读全文
posted @ 2024-04-16 16:34 朝阳1 阅读(328) 评论(0) 推荐(0) 编辑
摘要: ChatGPT现在虽然都免费了,但是不岢雪(那俩字竟然是敏感字)上网还是很麻烦,网上有很多gpt网站可以用,但是自己用来开发的话,还是需要一个apikey的 项目地址 https://github.com/chatanywhere/GPT_API_free 可以直接去官网看如何申请 申请地址 htt 阅读全文
posted @ 2024-04-16 14:16 朝阳1 阅读(4074) 评论(0) 推荐(1) 编辑
摘要: 地址 https://github.com/harry0703/MoneyPrinterTurbo 经过测试,很垃圾好像就是去pexels匹配视频、图片。。。~eng~还是用gpt把 Windows 百度网盘: https://pan.baidu.com/s/1bpGjgQVE5sADZRn3A6F 阅读全文
posted @ 2024-04-16 14:05 朝阳1 阅读(697) 评论(0) 推荐(0) 编辑
摘要: import turtle from datetime import * # 抬起画笔,向前运动一段距离放下 def Skip(step): turtle.penup() turtle.forward(step) turtle.pendown() def drawCircle(content,con 阅读全文
posted @ 2024-04-16 09:46 朝阳1 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 背景图 import sys import math import pygame from datetime import datetime from pygame import display, image, font, transform # 创建罗盘时钟的窗口 def createWindow 阅读全文
posted @ 2024-04-16 09:36 朝阳1 阅读(165) 评论(0) 推荐(0) 编辑
摘要: import jieba text = "我喜欢自然语言处理技术!" seg_list = jieba.cut(text, cut_all=False) print("精确模式分词结果:", "/".join(seg_list)) #添加自定义词典 jieba.add_word("自然语言处理") 阅读全文
posted @ 2024-04-15 17:30 朝阳1 阅读(5) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "sync" ) var wg sync.WaitGroup func main() { evenCh, oddCh := make(chan bool, 1), make(chan bool, 1) defer close(evenCh) d 阅读全文
posted @ 2024-04-15 11:23 朝阳1 阅读(43) 评论(0) 推荐(0) 编辑
摘要: cuda安装之前,需要查看本机的gpu版本 查看自己电脑是否安装了显卡驱动 在桌面右击,打开NVIDIA 控制面板,点击系统信息,我们可以看到自己驱动程序版本,如果没有gpu驱动,建议先安装NVIDIA驱动 点击组件查看支持cuda的版本号,在这支持cuda 11.6.1 安装cuda https: 阅读全文
posted @ 2024-04-15 10:45 朝阳1 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 此项目只能随机生成图片,不能以图生图 先把源码克隆到本地,https://github.com/NVlabs/stylegan3 进入项目文件夹,激活虚拟环境 conda env create -f environment.yml conda activate stylegan3 访问https:/ 阅读全文
posted @ 2024-04-15 10:26 朝阳1 阅读(135) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 43 下一页