No category
-
rsync, parallel카테고리 없음 2024. 10. 22. 13:19
Basic Form of rsyncrsync -rv --progress local_dir destination/-r: recursive-v: verboseTransfer a directory from local PC to an EBS attached to an ec2 instancersync -rv --progress -e "ssh -i ~/.ssh/your-ssh-key" local_dir destination/-e is for inputting credential(example)rsync -rv --progress -e "ssh -i ~/.ssh/daesoo-linux-pc.pem" SoundlySpeech_24000hz ec2-user@ec2-13-60-224-245.eu-north-1.comput..
-
-
-
-
study materials for diffusion models카테고리 없음 2023. 6. 5. 09:38
https://towardsdatascience.com/understanding-the-denoising-diffusion-probabilistic-model-the-socratic-way-445c1bdc5756 Understanding the Denoising Diffusion Probabilistic Model, the Socratic Way A deep dive into the motivation behind the denoising diffusion model and detailed derivations for the loss function towardsdatascience.com with the background in ELBO from https://process-mining.tistory...
-
Keras installation in RPython 2023. 4. 11. 08:45
# install the Tensorflow R package install.packages("tensorflow") # configure R with a Python installation library(reticulate) path_to_python % layer_dense(units = 1, activation = "linear") summary(network) Reference [1] https://tensorflow.rstudio.com/install/ TensorFlow for R - Quick start Prior to using the tensorflow R package you need to install a version of Python and TensorFlow on your sys..
-
Conda environment카테고리 없음 2023. 2. 8. 22:48
This posting shows an easy way to provide installation of a conda environment of your open-source project. Assumption: You use a conda environment for your project. Exporting the environment.yml file (of your conda environment) Creating an environment from an environment.yml file BETTER USE --no-builds parameter conda env export --no-builds > environment.yml -no-builds command. This command will..