分类: 未分类

Notes on Using SeaweedFS

2022年5月26日

You should download the large_disk version. Run ./weed version, if you see “Seaweed 8000GB”, then you are using the large disk version. If […]

Interesting Linux tools

2022年5月18日

zsh plugins sudo Press ESC twice (you can change the shortcut) to add prefix sudo. You still need to press enter to execute the command. I coincidentl […]

Block users from logging into SSH

2022年5月15日

Based on custom logic In /etc/pam.d/sshd, add session required pam_exec.so stdout /mylogic /mylogic will be executed with environment variable $PAM_US […]

如何让Tortoisegit记住密码?

2022年3月20日

manager-core指的是https://github.com/GitCredentialManager/git-credential-manager 保存的密码在Windows控制面板->凭据管理器 URL可以缩略为 https://gitlab.com/gqq-my-master/

Tensorflow scatter_nd用法解释

2021年12月22日

scatter_nd按shape创建以0填充的张量,然后用updates张量更新该张量。具体updates更新哪些位置则由indices指定。 1、indices.shape的前面部分必须与updates.shape相同,indices.shape后面多一维。 例1 indices.shape=(2 […]

神经网络比较两个数字

2021年12月21日

比较两个数的大小 def f1(a, b): if a > b: return 1 else: return 0 目标:在20 epochs内达到0.99的准确率。 根据《STEP-BY-STEP MODELING A NEURAL NETWORK FOR CLASSIFICATION》的经验,网络 […]