-
french wash / lime wash painting카테고리 없음 2025. 2. 16. 05:46
https://www.youtube.com/watch?v=NWmJBvL5z4A&t=226s&ab_channel=HomeByMon 2. https://www.youtube.com/watch?v=4EC1GHQS4Tk&ab_channel=TheMerrythoughtRemarks- when painting, it's might not be obvious that you're getting the effect. When dried, it becomes obvious.- damping a brush on water like in the first video should smooth the painting process.- never deep-dip the brush, only on the tip, otherwise..
-
Configure your Logitech MX Master 3 mouse on Ubuntu with Solaar보호글 2024. 12. 12. 20:49
보호되어 있는 글입니다.
-
[SFTP] transfer files from a server to a local device카테고리 없음 2024. 11. 20. 15:14
To connect to a server using SFTP and transfer a file from the server to your local PC, follow these steps:Step 1: Prepare the Required InformationServer details:Username (e.g., root or daesoo)Server IP address or hostname (e.g., 213.173.108.222)Port (default is 22, but it may differ if configured differently on your server).Authentication:Password or an SSH private key file (e.g., ~/.ssh/id_ed2..
-
slurm job script example카테고리 없음 2024. 11. 8. 21:26
job_script.sh#!/bin/bash# Job name:#SBATCH --job-name=hilcodec_training## Project:#SBATCH --account=nn11068k## Wall time limit:#SBATCH --time=00-00:05:00## Other parameters:#SBATCH --partition=accel#SBATCH --gres=gpu:1#SBATCH --mem=50G#SBATCH --cpus-per-task=16# Set up job environment:set -o errexit # Exit the script on any error# Initialize Conda without sourcing .bashrcMINIFORGE_INSTALL_PATH="..
-
Lipschitz continuity in GAN카테고리 없음 2024. 11. 8. 14:25
Lipschitz continuity plays a crucial role in Generative Adversarial Networks (GANs), especially in the context of Wasserstein GANs (WGANs). Understanding its importance requires delving into how GANs function and why enforcing Lipschitz continuity leads to more stable and effective training.Background: Generative Adversarial Networks (GANs)A GAN consists of two neural networks: Generator (G): A..
-
installing miniforge카테고리 없음 2024. 11. 6. 22:42
Example of installing miniforce (kind like mini conda) on the sigma2 server machine.#!/bin/bash# VariablesMINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh"MINIFORGE_INSTALL_PATH="/cluster/projects/nn11068k/miniforge3"# Silently download and install Miniforgeecho "Downloading and installing Miniforge..."wget -q "$MINIFORGE_URL" -O /tmp/Mi..
-
creating a custom module in slurm카테고리 없음 2024. 11. 6. 21:47
The following shows the example of creating a custom module for PyTorch in Slurm.Creating a custom module for PyTorch version 2.5.1 in a Slurm-managed high-performance computing (HPC) environment involves several steps:Create a virtual environmentmkdir -p modules/pytorch/2.5.1python -m venv modules/pytorch/2.5.1source activate modules/pytorch/2.5.1/bin/activateInstall PyTorch and Other Libraries..
-
intuitive understanding of magnitude and phase from STFT카테고리 없음 2024. 10. 22. 18:51
In the context of audio signals, the magnitude and phase obtained from the Short-Time Fourier Transform (STFT) have intuitive meanings related to the perception and structure of sound:Magnitude:The magnitude represents the strength (or amplitude) of each frequency component in the signal at a given time. Intuitively, it tells you:How loud each frequency is: Higher magnitude values correspond to ..