Skip to content

Instantly share code, notes, and snippets.

View sjchoi86's full-sized avatar
🇰🇷
Back in korea

Sungjoon sjchoi86

🇰🇷
Back in korea
View GitHub Profile
@sjchoi86
sjchoi86 / demo_06_gaussian_process.ipynb
Created October 5, 2020 14:13
GP example in Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sjchoi86
sjchoi86 / demo_04_contrastive_loss.ipynb
Created October 2, 2020 03:14
Contrastive loss in SimCLR
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sjchoi86
sjchoi86 / demo_PyBullet_01_SAC_AntBullet_Explained.ipynb
Created June 15, 2020 16:09
Self-contained SAC on PyBullet Ant
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sjchoi86
sjchoi86 / demo_ML_BayesianOptimization.ipynb
Created May 26, 2020 04:14
Bayesian Optimization with Expected Improvement Criterion
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sjchoi86
sjchoi86 / demo_RAY_03_with_TensorFlow.ipynb
Created May 11, 2020 10:31
RAY with a TensorFlow Model
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sjchoi86
sjchoi86 / demo_RAY_01_basic_usage.ipynb
Last active May 11, 2020 00:54
Simple implementation of a parameter server using RAY
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sjchoi86
sjchoi86 / demo_save_restore_network.ipynb
Created April 29, 2020 22:52
A self-contained TF example of saving and restoring network variables.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sjchoi86
sjchoi86 / demo_ant_pybullet.py
Last active April 25, 2020 04:38
A minimalist example of using AntEnv with PyBullet
import time,gym
gym.logger.set_level(40)
import numpy as np
import pybullet as p
import pybullet_envs # env
p.connect(p.DIRECT)
env = gym.make("AntBulletEnv-v0")
_ = env.render(mode='human')
print ("action is from %s to %s"%
@sjchoi86
sjchoi86 / demo_tf_rnn.ipynb
Created April 7, 2020 01:06
vibroptml/scripts/demo_tf_rnn.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.