相关文章
李宏毅机器学习课程笔记03 | 类神经网络优化技巧
文章目录 类神经网络优化技巧局部最小值local minima 与 鞍点saddle pointSaddle Point 的情况更常见 Tips for training:Batch and MomentumSmall Batch vs Large Batch回顾:optimization优化 找到参数使L最小问题:为什么要用Batchÿ…
建站知识
2025/1/13 13:17:05
【网络】计算机网络的分类 局域网 (LAN) 广域网 (WAN) 城域网 (MAN)个域网(PAN)
局域网是通过路由器接入广域网的
分布范围
局域网Local Area Network:小范围覆盖,速度高,延迟低(办公室,家庭,校园,网络)
广域网Wide Area Network 大范围覆盖,速度相对低,延迟高…
建站知识
2025/1/13 13:16:03
服务器/电脑与代码仓gitlab/github免密连接
git config --global user.name "xxxx"
git config --global user.email "xxxxxx163.com" #使用注册GitHub的邮箱
生成对应邮箱的密码对
ssh-keygen -t rsa -b 4096 -C "xxxxxx163.com"
把公钥id_rsa.pub拷贝到github中
Setting----->…
建站知识
2025/1/13 13:09:56
深度学习-图神经网络-超图概念及在Hyper-YOLO的应用(小白也看懂)
为什么需要超图?
在一个复杂系统中,某些节点(实体)之间的互动可能不是仅限于两个节点之间的关系,而是多个节点同时参与的更复杂的关系(超边)。简单说就是为了更好的描述事物之间的关系…
建站知识
2025/1/13 13:05:50
7.business english
one size fits all 一刀切,通用的
There is no one size fits all approach to education.
This kind of one size fits all policy doesn’t work in every situation.
We can keep the main parts of our design the same but tweak them a little to match local tastes.…
建站知识
2025/1/13 13:01:46
C++ Json库的使用
1.Json库的使用,包含C Json的创建、读写、字符串Json互转等,覆盖日常使用场景 前提:按照参考的文章部署好nlohmann/json 上代码
#include <iostream>
#include <fstream>
#include "nlohmann/json.hpp"
using json n…
建站知识
2025/1/13 13:00:45
导出Excel实现单元格自动合并(EasyExcel)
前言 EasyExcel实现单元格合并的导出。效果如下: 一、EasyExcel是什么? 这个我就不介绍了,阿里出的,但是据说现在EasyExcel停止维护了,不过不要紧,目前依然好用。后期可能被FastExcel替代,开发这个的团队好像就是EasyExcel那一波人。
二、使用步骤
1.引入库 easyExce…
建站知识
2025/1/13 12:58:43