上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: # -*- coding: utf-8 -*- """ Created on Thu Aug 11 11:29:35 2022 @author: koneko """ from docx import Document doc = Document(r"test.docx") runs = doc. 阅读全文
posted @ 2022-08-11 11:44 裏表異体 阅读(632) 评论(0) 推荐(0) 编辑
摘要: 代码: # -*- coding: utf-8 -*- """ Created on Fri Aug 5 17:11:50 2022 @author: koneko """ import requests import docx import re import sqlite3 import ope 阅读全文
posted @ 2022-08-05 17:31 裏表異体 阅读(65) 评论(0) 推荐(0) 编辑
摘要: https://www.jb51.net/article/236258.htm https://blog.csdn.net/weixin_43314650/article/details/119999867 https://github.com/cluic/wxauto 【uiautomation】 阅读全文
posted @ 2022-08-05 11:51 裏表異体 阅读(500) 评论(0) 推荐(0) 编辑
摘要: https://www.zhihu.com/question/24332521?sort=created 阅读全文
posted @ 2022-08-04 16:27 裏表異体 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 代码 import requests #导入第三方库 from bs4 import BeautifulSoup as bs import re import os import random import json import openpyxl import time headers = {'u 阅读全文
posted @ 2022-08-03 21:11 裏表異体 阅读(585) 评论(0) 推荐(0) 编辑
摘要: Regexpal https://www.regexpal.com/ regexr https://regexr.com/ regexlearn 可以在线学习正则表达式 https://regexlearn.com/ regex101 https://regex101.com/ 正则表达式30分钟入 阅读全文
posted @ 2022-08-03 14:15 裏表異体 阅读(37) 评论(0) 推荐(0) 编辑
摘要: Socket简介 Socket又称套接字,它是处于应用层和传输层之间的一个抽象接口。它封装了TCP/UDP等的底层协议,通过它我们就可以实现应用程序或者进程之间(它们可以处在网络上的不同位置)的通信。 Socket的表示方法 因为Socket是两个程序之间的通信,只需要给定IP地址和端口号就可以进行 阅读全文
posted @ 2022-07-19 19:12 裏表異体 阅读(3425) 评论(0) 推荐(0) 编辑
摘要: 在pretty_midi中,表示降号用的是'!'或者'b',而music21中用的是'-' pretty_midi的文档说明 music21的文档说明 转换 re.sub('-','b','A-') 阅读全文
posted @ 2022-04-11 22:14 裏表異体 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 先看看文档怎么说的 这里说指定某个纬度(dim),就会让那个纬度的和为1 看一下input是2维的情况 dim=0 dim=1 再看看input是3维的情况 dim = 0 dim = 1 阅读全文
posted @ 2022-04-04 00:03 裏表異体 阅读(34) 评论(0) 推荐(0) 编辑
摘要: RNN简单介绍 什么是RNN RNN的全称是Recurrent Neural Network,中文名称是循环神经网络。它的一大特点就是拥有记忆性,并且参数共享,所以它很适合用来处理序列数据,比如说机器翻译、语言模型、语音识别等等。 它的结构 它的更新公式 (Pytorh 文档里的 https://p 阅读全文
posted @ 2022-04-03 16:10 裏表異体 阅读(127) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页