Skip to content

Instantly share code, notes, and snippets.

View kengz's full-sized avatar

Wah Loon Keng kengz

View GitHub Profile
Age Sex ChestPainType RestingBP Cholesterol FastingBS RestingECG MaxHR ExerciseAngina Oldpeak ST_Slope HeartDisease
40 M ATA 140 289 0 Normal 172 N 0 Up 0
49 F NAP 160 180 0 Normal 156 N 1 Flat 1
37 M ATA 130 283 0 ST 98 N 0 Up 0
48 F ASY 138 214 0 Normal 108 Y 1.5 Flat 1
54 M NAP 150 195 0 Normal 122 N 0 Up 0
39 M NAP 120 339 0 Normal 170 N 0 Up 0
45 F ATA 130 237 0 Normal 170 N 0 Up 0
54 M ATA 110 208 0 Normal 142 N 0 Up 0
37 M ASY 140 207 0 Normal 130 Y 1.5 Flat 1
@kengz
kengz / README.md
Created June 20, 2022 15:09 — forked from aishwarya8615/README.md
Healthcare Dataset Stroke Data

Dataset Source: Healthcare Dataset Stroke Data from Kaggle.

This dataset is used to predict whether a patient is likely to get stroke based on the input parameters like gender, age, and various diseases and smoking status. A subset of the original train data is taken using the filtering method for Machine Learning and Data Visualization purposes.

About the Data: Each row in the data provides relavant information about a person , for instance; age, gender,smoking status, occurance of stroke in addition to other information Unknown in Smoking status means the information is unavailable. N/A in other input fields imply that it is not applicable.

@kengz
kengz / slm_lab_colab.ipynb
Last active May 25, 2021 05:36
SLM_Lab_Colab.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kengz
kengz / ubuntu_gpu_server_setup.md
Last active June 7, 2020 05:09
Ubuntu GPU server setup

Ubuntu GPU Server Setup

Quick and smooth setup of Ubuntu GPU server, including proper installation of Nvidia driver.

Estimated time: < 1 hour

  1. Download the “alternative” server image from Ubuntu: Alternative downloads | Ubuntu
  2. Create a bootable USB stick on macOS | Ubuntu
  3. Go to BIOS, disable secure boot. Then boot UEFI. Install Ubuntu, overwrite full partition, add SSH Server. Finish installation and login.
  4. You can now ssh in with password. Login and install nvidia driver. Since secure boot is disable, nvidia installation should go smoothly.
@kengz
kengz / History|-10f1514|1Scb.json
Last active July 19, 2022 17:16
Visual Studio Code Settings Sync Gist
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+cmd+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+down",
"command": "-editor.action.moveLinesDownAction",
@kengz
kengz / sac_benchmark.md
Last active August 11, 2019 18:22
SAC benchmark

Roboschool (continuous control) Benchmark

Note that the Roboschool reward scales are different from MuJoCo's. All results are ran with 4 sessions with distinct random seeds. mean_returns_ma is the returns moving-average over 100 checkpoints from the sessions averaged.

Env. \ SAC mean_returns_ma graph
RoboschoolAnt 2451.55 sac
RoboschoolHalfCheetah 2004.27 sac
RoboschoolHopper 2090.52 sac
RoboschoolWalker2d 1711.92 sac
@kengz
kengz / sac_training.py
Created August 10, 2019 06:50
SAC training loop
def train_alpha(self, alpha_loss):
'''Custom method to train the alpha variable'''
self.alpha_lr_scheduler.step(epoch=self.body.env.clock.frame)
self.alpha_optim.zero_grad()
alpha_loss.backward()
self.alpha_optim.step()
self.alpha = self.log_alpha.detach().exp()
def train(self):
'''Train actor critic by computing the loss in batch efficiently'''
@kengz
kengz / sac_log_prob.py
Last active August 11, 2019 18:16
SAC log probs
def calc_log_prob_action(self, action_pd, reparam=False):
'''Calculate log_probs and actions with option to reparametrize from paper eq. 11'''
samples = action_pd.rsample() if reparam else action_pd.sample()
if self.body.is_discrete: # this is straightforward using GumbelSoftmax
actions = samples
log_probs = action_pd.log_prob(actions)
else:
mus = samples
actions = self.scale_action(torch.tanh(mus))
# paper Appendix C. Enforcing Action Bounds for continuous actions
@kengz
kengz / sac_losses.py
Last active August 11, 2019 18:16
SAC loss functions
def calc_q(self, state, action, net):
'''Forward-pass to calculate the predicted state-action-value from q1_net.'''
q_pred = net(state, action).view(-1)
return q_pred
def calc_q_targets(self, batch):
'''Q_tar = r + gamma * (target_Q(s', a') - alpha * log pi(a'|s'))'''
next_states = batch['next_states']
with torch.no_grad():
pdparams = self.calc_pdparam(next_states)
@kengz
kengz / sac_networks.py
Last active August 11, 2019 18:15
SAC networks
def init_nets(self, global_nets=None):
'''
Networks: net(actor/policy), q1_net, target_q1_net, q2_net, target_q2_net
All networks are separate, and have the same hidden layer architectures and optim specs, so tuning is minimal
'''
self.shared = False # SAC does not share networks
NetClass = getattr(net, self.net_spec['type'])
# main actor network
self.net = NetClass(self.net_spec, self.body.state_dim, net_util.get_out_dim(self.body))
self.net_names = ['net']