上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 390 下一页
摘要: What's perceptron algorithm invented by Frank Rosenblatt? The perceptron algorithm is a supervised learning algorithm for binary classification of inp 阅读全文
posted @ 2023-03-19 14:14 ChuckLu 阅读(13) 评论(0) 推荐(0) 编辑
摘要: What's element-wise in numpy? In numpy, element-wise operations refer to operations that are performed on corresponding elements of two or more arrays 阅读全文
posted @ 2023-03-19 02:27 ChuckLu 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 云风的 BLOG: 学习神经网络的一点笔记 (codingnow.com) 一开始,我是从维基百科的 Machine learning 开始读的。顺着看了一整天,了解了近年发展的脉络。好多词条,乱七八糟的笔记记了一大堆,感觉快消化不了了。疑问也积累了很多,觉得看下去效率会越来越低。不如换一条路。 然 阅读全文
posted @ 2023-03-19 02:08 ChuckLu 阅读(57) 评论(0) 推荐(0) 编辑
摘要: MySQL practice 1.create a database with name example, and set the character set to utf82.alter the example database, and set the character set to gbk3 阅读全文
posted @ 2023-03-18 14:23 ChuckLu 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 在first程序的里面views.py返回 def index(request): return HttpResponse("这是我的第一个Django网页") 还要主程序的urls.py引入 urlpatterns = [ path('admin/', admin.site.urls), path 阅读全文
posted @ 2023-03-18 12:34 ChuckLu 阅读(11) 评论(0) 推荐(0) 编辑
摘要: TCP连接的特点 三次握手 为啥确认号需要+1 可以wireshark抓包查看,访问一个网站的http,会被自动重定向到https syn, sync,ack ack ack只包含信息,不包含数据 标志位 urg ack psh rst syn fin tcp三次握手攻击,只发送syn,【ddos攻 阅读全文
posted @ 2023-03-18 10:24 ChuckLu 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Audition的使用 音频的获取 新建-->多轨文件或者音频文件 直接选音频文件,默认是单轨。 设置采样率8khz,声道:单,位深度8 录制声音后,可以调整振幅 比特率=采样率*声道*位深度 文件大小=比特率*时间/8 文件大小及质量,最终还和编码格式有关系。 主流音频文件格式的比较 采样频率44 阅读全文
posted @ 2023-03-18 08:38 ChuckLu 阅读(14) 评论(0) 推荐(0) 编辑
摘要: session not created: This version of ChromeDriver only supports Chrome version 109Current browser version is 111.0.5563.65 with binary path C:\Program 阅读全文
posted @ 2023-03-16 16:41 ChuckLu 阅读(399) 评论(0) 推荐(0) 编辑
摘要: WebDriver | Selenium 安装分两步,先安装nuget package,然后再安装chrome driver https://github.com/seleniumhq/selenium 源码 https://www.nuget.org/packages/Selenium.WebDr 阅读全文
posted @ 2023-03-16 16:07 ChuckLu 阅读(29) 评论(0) 推荐(0) 编辑
摘要: private static string GetSalt() { byte[] saltBytes = new byte[64]; var provider = new RNGCryptoServiceProvider(); provider.GetNonZeroBytes(saltBytes); 阅读全文
posted @ 2023-03-16 13:45 ChuckLu 阅读(183) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 390 下一页