如何使用远程服务器作为本机的代理
这两年代理软件管得比较严,但 ChatGPT 对科研和学习又不可或缺。通常的解决办法是找更稳定的代理节点,也就是俗称的“机场”。不过,如果你手上有一台本身已经能访问外网的远程服务器(别管是怎么来的),也可以换一种思路:让本机通过 SSH 连接这台服务器,再把它作为本机的网络出口。这样一来,本机访问网站时,流量会先走到服务器,再由服务器访问目标网站。
这两年代理软件管得比较严,但 ChatGPT 对科研和学习又不可或缺。通常的解决办法是找更稳定的代理节点,也就是俗称的“机场”。不过,如果你手上有一台本身已经能访问外网的远程服务器(别管是怎么来的),也可以换一种思路:让本机通过 SSH 连接这台服务器,再把它作为本机的网络出口。这样一来,本机访问网站时,流量会先走到服务器,再由服务器访问目标网站。
Straight-through estimator, or STE, is a trick for training models that contain non-differentiable operations, notably the quantization operation commonly used in VQ-VAE.
The core idea is:
Use the non-differentiable operation in the forward pass, but replace its gradient with a simple surrogate in the backward pass.
Model Predictive Control, or MPC, is a model-based planning method.
Its core idea is simple:
Use a model to plan several steps into the future, execute only the first action, and then replan at the next step.
MPC is also called receding-horizon control because the planning horizon keeps moving forward as the agent interacts with the environment.
Sources:
Straight-through Gumbel-softmax is a trick for training models with discrete latent variables, similar to the famoud straight through estimator (STE) trick used in VQ-VAE.
The problem is simple:
We want to sample a discrete category in the forward pass, but we still want gradients to flow through it in the backward pass.
本文介绍 DJI Mic Mini 一代的使用方式,对二代及其他版本也适用。
Sources:
问题:在本地通过 SSH 登录远程服务器并进入后者的 tmux session 时,经常遇到 GitHub SSH 认证失败问题:
1 | [email protected]: Permission denied (publickey). |
Diffusion models are widely used for visual generation and have recently become important in pixel-space world models. This note introduces EDM (Elucidating the Design Space of Diffusion-Based Generative Models), a continuous-noise diffusion formulation that differs from classic DDPM. I study EDM because it is used by DIAMOND, one of the world models in my research.
Sources:
这篇笔记涵盖 Simulus / REM 的 core architecture, loss, and training procedure。而 Simulus 区别于 REM 的核心创新 intrinsic motivation、prioritized replay, and RaC 则在另外的文章讨论。
Sources:
Box is a cloud storage service, similar to Google Drive or Dropbox, that is widely used by universities. My school (UC Davis) provides its community with Box storage, including unlimited storage capacity and support for individual files up to 150 GB (UC Davis ServiceHub policy).
This makes Box a convenient option for storing research artifacts such as model checkpoints, datasets, and other large files.
介绍了网络代理工具 Clash(以及 Shadowrocket 等同类型产品),包括它们的基本概念和工作机制,并且进行了较深入的剖析。