blog
blog copied to clipboard
Your internal mediocrity is the moment when you lost the faith of being excellent. Just do it.
I found a Pi that my friends send me few years ago. i used to make it as a face recognization tool. so i wonder why do not make it...
Bumps [minimist](https://github.com/minimistjs/minimist) to 1.2.8 and updates ancestor dependencies [minimist](https://github.com/minimistjs/minimist), [hexo](https://github.com/hexojs/hexo), [hexo-deployer-git](https://github.com/hexojs/hexo-deployer-git) and [mkdirp](https://github.com/isaacs/node-mkdirp). These dependencies need to be updated together. Updates `minimist` from 0.0.8 to 1.2.8 Changelog Sourced from minimist's...
Removes [tough-cookie](https://github.com/salesforce/tough-cookie). It's no longer used after updating ancestor dependency [hexo](https://github.com/hexojs/hexo). These dependencies need to be updated together. Removes `tough-cookie` Updates `hexo` from 3.4.4 to 3.9.0 Release notes Sourced from...
Bumps [moment-timezone](https://github.com/moment/moment-timezone) from 0.5.14 to 0.5.43. Release notes Sourced from moment-timezone's releases. Release 0.5.43 * Updated data to IANA TZDB 2023c Release 0.5.42 Updated data to IANA TZDB 2023b Release...
Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.2. Commits 699c459 3.1.2 2f2b5ff fix: trim pattern 25d7c0d 3.1.1 55dda29 fix: treat nocase:true as always having magic 5e1fb8d 3.1.0 f8145c5 Add 'allowWindowsEscape' option 570e8b1...
Bumps [css-what](https://github.com/fb55/css-what) from 2.1.0 to 2.1.3. Commits 2db00ca 2.1.3 dc51092 fix(css-selectors): extend regex to include superscript in range, fix #27 (#28) a5f1991 Test on node LTS b2a2117 2.1.2 e9ef3f1 Run...
Bumps [qs](https://github.com/ljharb/qs) from 6.5.1 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...
1. create a s3 bucket * enable server side encryption * setting accees only with cloudfront ( you can do it when cloudfront was created) ```policy { "Version": "2008-10-17", "Id":...
In fact, it's rellay idiot. but i totally understand that. because you can't always download the file. otherwise, the server will block you. so after few years use github to...
# 0x00 前言 在Azure开始提供OpenAI服务之初,公司的大佬就申请开通了相应的资源。我也趁此试用了更多的场景,一边用Azure的OAI,一边用官方的,对比其中的差异。看看是不是像售前所说的那样,是同一套模型,同一套API。同时也体验了New Bing,Google Bard, Vicuna之类的模型。感觉对于深度学习这一块的知识已经有点跟不上了。只能在应用和产品化方面下下心思了。 # 0x01 正文 之所以想去做定制化的ChatGPT,一是希望能够实现稍微有点自主智能的Bot, 不是去条件式回答,而是能够聚合语料库,知识库。例如:企业内的WIki,客服的案例库。过去都是将案例库设置条件访问,客户咨询按路径,加人工的方式。如果能够实现自助聚合这些知识,显然可以提升很大的效率。 二是希望能够在垂直领域进行应用,就像昨晚和宇哥讨论的,他认为GPT也能在数据安全领域得到一定的应用。对此深表赞同。如果想去做类似这些应用就需要涉及到自定义的训练。以下为相关教程,参考及资源见文章最后部分。 ## 1. 前置条件 1. python3.10 2. 安装llama_index最新版 (`pip install llama_index`) , 如果已经安装请使用`pip install --upgrade llama_index` 进行升级 >...