SRDP
weixin_45965693
爱逛B站的肥宅,也不是计算机专业的
展开
-
python调用讯飞语音打分
import osimport openpyxlfrom xml.etree import ElementTree as ETimport websocketimport datetimeimport hashlibimport base64import hmacimport jsonfrom urllib.parse import urlencodeimport timeimport sslfrom wsgiref.handlers import format_date_time原创 2022-01-27 17:15:12 · 426 阅读 · 3 评论 -
【tkinter+阿里云数据库】 Python编写一个操作数据库的小小工具
参考In this chapter, we will discuss how to represent and display this data using object-oriented programming (OOP) principles and applying the Model-View-Controller (MVC) pattern.Structuring our data with a class我们将以联系人列表应用程序为例,说明如何使用Python类对数据进行建模。即使用户原创 2021-11-27 22:59:28 · 4634 阅读 · 0 评论 -
【Python批量处理表格】汉字转拼音
from xpinyin import Pinyinimport xlrdimport xlsxwriterdata = xlrd.open_workbook('laji.xls')print(data.sheet_names()) # 输出所有页的名称table = data.sheets()[0] # 获取第一页nrows = table.nrows # 为行数,整形workbook = xlsxwrit原创 2021-11-27 19:44:08 · 303 阅读 · 0 评论 -
2021-09-03 【N02】小程序开发学习笔记
1.回顾明确:JS逻辑层文件JavaScriptWXML页面的描述文件XeiXin Markup LanguageWXSS样式文件WeiXin Style Sheets快捷键:Ctrl+S 保存文件Shift+Alt+F 格式化代码Ctrl+/ 代码整行注释或取消,在空白行次快捷键可添加注释项目调试:真机调试–右上角真机调试,扫码手机测试开发工具调试–共10个功能1)Console面板:控制台,在执行代码有误时,显示错误信息2)Sources面板:显示当前项目的脚本文件以及进行重要原创 2021-09-16 23:46:41 · 132 阅读 · 0 评论 -
2021-09-03 【N01】小程序开发学习笔记
小程序应该成为零基础入门开发者学习前端的首选开发平台你所需要掌握的是JavaScript和CSS,原则上讲,不再需要学习各类框架和库了。这无疑减轻了很多初学者的负担。参考书籍:https://weread.qq.com/web/reader/13332d405e0c8913356ee8dk16732dc0161679091c5aeb1微信官方文档:https://developers.weixin.qq.com/doc/博主有一点点也可以算没有的基础:博客园美化那咱们就开始学习之路啦1.小程.原创 2021-09-16 23:10:23 · 4170 阅读 · 0 评论 -
mysql.connector操作垃圾分类数据
表格数据转csv格式导入import mysql.connector#连接数据库def dbConnect(db_host): db_user = 'root' db_pass = '12345%$#@!' db_name = 'pythondb' db_conn = mysql.connector.connect(user=db_user,password=db_pass,host=db_host,database=db_name) return db.原创 2021-08-21 15:57:23 · 295 阅读 · 0 评论 -
2021-08-13 [转载]完整数据集中随机抽取训练集和测试集
https://blog.csdn.net/qq_41249412/article/details/117481647原创 2021-08-13 14:34:30 · 191 阅读 · 0 评论 -
2021-08-13 语音处理部分
原创 2021-08-13 14:20:05 · 75 阅读 · 0 评论 -
2021-8-13 librosa写入报错
写入的音频损坏无法播放改用soundfile原创 2021-08-13 12:54:03 · 103 阅读 · 0 评论 -
2021-8-8 librosa库统一音频数据时长
目前我接触到的处理音频的python库有:wave-标准库scipy.io.wavfilelibrosawaviothikdsp-githubsoundfile需要注意不同库读取音频得到的data类型是不同的,有的是array有的是list,元素也不同有的是整数,有的是浮点数,也即是归一化了的。norm:boolean [scalar]enable amplitude normalization. For floating point y, scale the data to the r原创 2021-08-08 18:16:58 · 939 阅读 · 0 评论 -
2021-08-06 Keras、Kapre、CNN
看了很久的书踩了不少的坑,也得到了结果,但是不大好原来的想法是用目标检测模型实现语音谱图的实时检测,我总结下实际用起来的问题:1.没找到合适的预模型,小数据集多采用迁移学习但目前我还没找到语谱图识别的模型2.tensorflow1.x书中的很多东西已经过时了而它的目标读者还是刚入门步骤都是集成化的,面多很多细节我还不会调3.后续,加更多的语音数据,以及呈现的方式,不知道在哪学习Seth Adamshttps://www.youtube.com/user/seth8141githubhttps:/原创 2021-08-07 18:53:31 · 421 阅读 · 0 评论 -
2021-08-02 处理文件的代码合集
pandas库https://zhuanlan.zhihu.com/p/26828325os库获取目录下文件的信息批量新建文件夹批量写入文件批量修改文件tqdm库进度条原创 2021-08-02 21:34:52 · 72 阅读 · 0 评论 -
2021-07-28 优化并部署模型
未解决:Visual Studio 2017安装报错运行演示程序demo_benchmark_app.bat是OpenVINOTM工具套件Benchmark批处理演示程序,可以测试出不同AI加速硬件的运行时间(Duration)、延时(Latency)和吞吐量(Throughput)。编译并运行Inference Engine范例和演示程序编译Inference Engine范例(Samples)则是验证OpenVINOTM工具套件的开发编译环境是否安装成功,为后续开发OpenVIN原创 2021-07-28 11:05:43 · 510 阅读 · 0 评论 -
2012-07-21训练模型
参考代码:360网盘下载:https://yunpan.360.cn/surl_yqMKweHiZRL(提取码:af62)笔记:1.使用预训练模型模型名称(Model name)的命名规则是:目标检测算法_特征提取网络_训练数据集。例如,ssd_mobilenet_v1_coco的意思是,该模型使用了SSD(Single ShotMultibox Detector)目标检测算法,mobilenet特征提取网络,在COCO数据集上进行了训练。https://github.com/tensorfl原创 2021-07-21 12:03:30 · 595 阅读 · 1 评论 -
2021-07-14 搭建深度学习训练的开发环境
参考深度学习图像识别技术:基于TensorFlow Object Detection API和OpenVINO工具套件配置过程中遇到的一些坑,以书为主线,遇到问题再来查看。原创 2021-07-16 14:35:46 · 273 阅读 · 1 评论 -
2021-05-21 实时显示matplotlib
import pyaudioimport numpy as npimport matplotlib.pyplot as pltfrom multiprocessing import Process, Queue, freeze_supportimport time# 队列相当于缓存,用于保存数据q = Queue(10)def cb(cb_q): def callback(in_data, frame_count, time_info, status): # all param..原创 2021-05-21 17:03:40 · 93 阅读 · 0 评论 -
page功能实现
效果图注释选中——右键——Folding——最后一项代码page0.py'''导入库'''import systry: import Tkinter as tk from tkinter import messagebox from tkinter.filedialog import *except ImportError: import tkinter as tk from tkinter import messagebox fro原创 2021-05-11 22:23:33 · 198 阅读 · 2 评论 -
page页面内切换
https://www.huaci.cc/pjzt/4ab7a482de534a6cf9ac7c4ac89d7c55.html上一篇帖子中页面切换其实存在一个很重要的问题–页面切换==对象新建。造成的问题就是,每次页面切换都需要自己重新输入数据, 费时费力!为了解决这个问题, 借鉴了web前端中页面滚动的思想。类似动画片最早的播放。import tkinter as tkindex_num = 4 def up_page(): info = frame_root.place_i.原创 2021-05-10 15:27:58 · 161 阅读 · 0 评论 -
page使用
Page官方文档原创 2021-05-10 00:34:56 · 877 阅读 · 0 评论 -
波形图实时显示(无杂音)
目前没有加语谱图,原因是加上后可能由于FFT计算量大,会出现卡顿的情况import osimport waveimport pyaudioimport randomimport numpy as npimport matplotlib.pyplot as pltimport matplotlib.animation as animationimport matplotlib.lines as linefrom matplotlib.backends import backend_wxag.原创 2021-04-19 15:36:34 · 1001 阅读 · 1 评论 -
python多线程学习
【莫烦Python】Threading 学会多线程 Python【2021最新版】Python 并发编程实战,用多线程、多进程、多协程加速程序运行【莫烦Python】Multiprocessing 让你的多核计算机发挥真正潜力 Pythonthreading知识点1.添加线程和join的作用import threadingimport timedef thread_job(): print("T1 start\n") for i in range(10):原创 2021-04-18 22:09:37 · 1006 阅读 · 8 评论 -
录音+实时显示copy
日常搬运wxpython融合matplotlib显示实时声音波形wx_plot.py# -*- coding: utf-8 -*-import wximport osimport waveimport pyaudioimport randomimport numpy as npimport matplotlib.pyplot as pltimport matplotlib.animation as animationimport matplotlib.lines as linef原创 2021-04-18 12:22:44 · 201 阅读 · 2 评论 -
GUI main
# 导入区域from tkinter import *from tkinter import messageboxfrom tkinter.filedialog import *import webbrowser,wave,requests,time,base64 # 百度语音要求对本地语音二进制数据进行base64编码from pyaudio import PyAudio, paInt16class Application(Frame): def __init__(self, .原创 2021-04-11 18:47:44 · 204 阅读 · 0 评论 -
调用百度语音识别API
def baidu_api(audio_path,devpid=1536)return Result原创 2021-04-11 17:27:57 · 549 阅读 · 0 评论