摘要:
# 1. Delete local branch git branch -d your-branch # -d: Safe option that will only delete the branch if it has already been merged. # Or git branch - 阅读全文
摘要:
# 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 阅读全文
摘要:
Ubuntu # Add User sudo adduser username sudo usermod -aG sudo username # add to sudo group sudo usermod -aG docker username # add to docker group sudo 阅读全文
摘要:
Visualize YOLO network architectures https://github.com/ultralytics/ultralytics/issues/1289 阅读全文
摘要:
Reference: https://cloud.tencent.com/developer/article/1165821 基于Numpy包的polyfit函数实现,其支持的三个参数分别是x点集合、y点集合,以及多项式的幂次。得到多项式方程以后,就可以完整拟合曲线: 代码: def circle_ 阅读全文
摘要:
Embedding: An embedding is a relatively low-dimensional space into which you can translate high-dimensional vectors. Embeddings make it easier to do m 阅读全文
摘要:
Reference: https://builtin.com/artificial-intelligence/transformer-neural-network 1. Introduction A paper called “Attention Is All You Need,” publishe 阅读全文
摘要:
A Convolutional Neural Network (CNN) is a type of Deep Learning architecture commonly used for image classification and recognition tasks. It consists 阅读全文