TexStudio 指南 software-tex-studio1. 安装并配置 Tex Studio 运行 texstudio 安装程序 Latex Studio(可能被屏蔽) https://www.texstudio.org/ Latex Studio(应该是个镜像,目前可以访问) https://texstudio.sourceforge.net/ 在 Tex Studio 的设置>构建选项卡中,调整默认 2023-05-28 software #from-mine #software
Latex 指南 1. 学习资料 【视频教程】latex中文教程-15集从入门到精通包含各种latex操作- 哔哩哔哩 : https://www.bilibili.com/video/av16002978 Latex 符号集 - KaTeX : https://katex.org/docs/supported.html tug.org/twg/mactex/tutorials 2023-05-28 software #from-mine #software #latex
Latex 安装 1. 安装 Tex Live 操作环境:windows 10/11 【参考】https://tug.org/texlive/acquire-netinstall.html Tex Live : http://tug.org/texlive/ CTAN : https://www.ctan.org/ proTeXt - a TeX distribution for Windows 2023-05-28 software #from-mine #software #latex
使用 PIL, OpenCV, Matplotlib 获取图片通道数 1. PIL123img = Image.open(img_path)# getbands() 返回包含此图像中每个波段名称的元组。例如,RGB 图像返回 (“R”, “G”, “B”) 。len(img.getbands()) [参考] https://pillow.readthedocs.io/en/stable/reference/Image.html#PIL.Image.Image.g 2023-05-24 ai #ai #from-mine #picture-processing
IEEE 论文模板下载 进入 IEEE 文章模板下载页面:https://journals.ieeeauthorcenter.ieee.org/create-your-ieee-journal-article/authoring-tools-and-templates/tools-for-ieee-authors/ieee-article-templates/ 单击 IEEE Template Selector 按钮 2023-05-15 research #paper #article #research #template
软件推荐 1. Windows1.1. ImageGlass 开源软件 ImageGlass 是一款轻量化的通用图片查看器。 官网: https://imageglass.org/ 安装包: https://imageglass.org/release 安装包-百度网盘: https://pan.baidu.com/s/1YjcvPv-MXAdwlMwZeOOgJw?pwd=dknr 1.1.1. 2023-05-01 #software
apt 与 apt-get 的区别 【参考】 Difference Between apt and apt-get Explained - It’s FOSS : https://itsfoss.com/apt-vs-apt-get-difference/ 简述 apt-get, apt-cache 相对于 apt 命令相对低级,拥有大量相似的命令与不常用的功能; apt 是 apt-get 和 apt-cache 的子集,提供 2023-04-30 linux #from-mine #linux
Python 日志模块使用 将日志导出到文件【方法一】123456789101112import logging# https://docs.python.org/zh-cn/3/library/logging.html#logging.basicConfiglogging.basicConfig( filename='path/to/example.log', format='% 2023-04-30 python #python #log
关于 AI 的思考 我并不觉得「感性」是当下自然人面对 AI 的最大优势。 我的观点,大语言模型训练的 AI 目前的缺陷主要在于,暂时没有实现和物理模型的关联,例如 AI 说「苹果」,但它仅仅指的是「苹果」这个字面本身,而不是「苹果」作为水果这么一个物体。 人类的思维有人类思维的优势,AI 的思维有 AI 思维的优势,我们不要拿人类思维的劣势去对比 AI 思维的优势,而过于悲观;也不要拿人类思维的优势去对比 AI 2023-04-27 thought #ai #thought
初识 机器学习/深度学习 1. 参考教程 2. 服务器资源 3. 环境配置 3.1. cudnn, CUDA 的区别 3.2. 查询 CUDA 版本 3.3. 查询版本 4. 训练集/验证集/测试集 4.1. K 折交叉验证法 5. 过拟合 6. 环境 7. 数据集 7.1. 图像标注 8. 数据预处理 9. 训练与预测 10. 验证 11. 预测结果导出 12. 常用函数 1. 参考教 2023-04-23 ai #from-mine