Q&A: Fine-Tuning and Guidance on diffusion models
Questions: Regarding the CLIP Guidance for diffusion image generation description below: https://huggingface.co/learn/diffusion-course/unit2/2 “we’ll make a modified version of the sampling loop where, at each step, we do the following: Create…
coding judge system
https://github.com/DMOJ/online-judge https://github.com/DOMjudge/domjudge https://github.com/zhblue/hustoj https://blog.huli.tw/2020/03/23/en/build-your-own-online-judge-system/
what is std::forward and universal reference
std::forward, could you explain what does it mean, why it is needed there? Certainly! std::forward is a utility function in C++ that is used to implement perfect forwarding. Perfect forwarding…
Update k8s certs
kubeadm certs check-expiration kubeadm certs renew all systemctl restart kubelet ( or other api server etc) re-generate .kube/config # ssh <control-node1-cluster1> # sudo kubeadm kubeconfig user –client-name kubernetes-admin –org=system:masters…
iouring vs traditional read/write on files
what is difference between iouring vs normal hard driver driver software io_uring is a relatively new I/O interface introduced in the Linux kernel (starting from version 5.1) to provide a…
how condition variable wait_for with timeout implemented
essentially it is: os scheduler constant run + queue + timer how to let queue notify client that new element available instead of client poll/loop to check? ChatGPT To notify…
C++ const in return value, return reference and at end of function signature
In C++, const can be used in several contexts to indicate that a value, reference, or member function is immutable (cannot be changed). Understanding the use of const is crucial…
strong consistency in inventory management for a shopping site
Ensuring strong consistency in inventory management for a shopping site is crucial to prevent issues like overselling, maintaining accurate stock levels, and providing a reliable user experience. Here are several…
kafka consumer uses poll instead of notification
How kafka client get notification? Kafka clients (both producers and consumers) interact with the Kafka server (brokers) primarily through polling mechanisms. Here’s how it works for both producers and consumers:…
video streaming HLS, DASH
What is DASH and HLS? DASH (Dynamic Adaptive Streaming over HTTP) and HLS (HTTP Live Streaming) are both popular streaming protocols used to deliver multimedia content over the internet, but…