Skip to content

Instantly share code, notes, and snippets.

View stasaki's full-sized avatar

Shinya Tasaki stasaki

View GitHub Profile
@stasaki
stasaki / xgboost.R
Last active September 17, 2022 18:21
library(tidyverse)
library(mlr)
library(xgboost)
param=list()
param$outcome="z" # target variable
param$train_metric="rmse" # optimize rmse in training
param$mmetric = c("COR","RMSE") # use correlation and rmse for model evaluation
param$xgbTree_par.vals = list(objective="reg:linear",
@stasaki
stasaki / install-tensorflow.sh
Last active November 16, 2015 03:21 — forked from erikbern/install-tensorflow.sh
Installing TensorFlow on EC2
# Note – this is not a bash script (some of the steps require reboot)
# I named it .sh just so Github does correct syntax highlighting.
#
# This is also available as an AMI in us-east-1 (virginia): ami-cf5028a5
#
# The CUDA part is mostly based on this excellent blog post:
# http://tleyden.github.io/blog/2014/10/25/cuda-6-dot-5-on-aws-gpu-instance-running-ubuntu-14-dot-04/
# Install various packages
sudo apt-get update