摘要: # 1. Rename local branch git checkout old-name git branch -m new-name # -m, --move Move/rename a branch and the corresponding reflog. # or git branch 阅读全文
posted @ 2023-04-07 16:32 shendawei 阅读(111) 评论(0) 推荐(0) 编辑
摘要: Ubuntu # Add User sudo adduser username sudo usermod -aG sudo username # add to sudo group sudo vim /etc/sudoers # edit sudo group sudo passwd usernam 阅读全文
posted @ 2023-03-22 19:37 shendawei 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Visualize YOLO network architectures https://github.com/ultralytics/ultralytics/issues/1289 阅读全文
posted @ 2023-03-22 10:15 shendawei 阅读(60) 评论(0) 推荐(0) 编辑
摘要: Reference: https://cloud.tencent.com/developer/article/1165821 基于Numpy包的polyfit函数实现,其支持的三个参数分别是x点集合、y点集合,以及多项式的幂次。得到多项式方程以后,就可以完整拟合曲线: 代码: def circle_ 阅读全文
posted @ 2023-03-14 09:39 shendawei 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Embedding: An embedding is a relatively low-dimensional space into which you can translate high-dimensional vectors. Embeddings make it easier to do m 阅读全文
posted @ 2023-03-13 15:52 shendawei 阅读(51) 评论(0) 推荐(0) 编辑
摘要: Reference: https://builtin.com/artificial-intelligence/transformer-neural-network 1. Introduction A paper called “Attention Is All You Need,” publishe 阅读全文
posted @ 2023-03-13 15:48 shendawei 阅读(19) 评论(0) 推荐(0) 编辑
摘要: A Convolutional Neural Network (CNN) is a type of Deep Learning architecture commonly used for image classification and recognition tasks. It consists 阅读全文
posted @ 2023-03-08 10:49 shendawei 阅读(44) 评论(0) 推荐(0) 编辑
摘要: Squash merge Combine commits and ensure a cleaner merge history in your Git repository. git merge --squash targetBranch 阅读全文
posted @ 2023-03-07 18:59 shendawei 阅读(10) 评论(0) 推荐(0) 编辑
摘要: MAJOR version: when you make incompatible API changes MINOR version: when you add functionality in a backwards compatible manner PATCH version: when y 阅读全文
posted @ 2023-03-07 18:30 shendawei 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1. Linear 2. GCNConv 阅读全文
posted @ 2023-03-04 11:14 shendawei 阅读(1) 评论(0) 推荐(0) 编辑