Skip to content

Instantly share code, notes, and snippets.

View adoskk's full-sized avatar

Mengliu Zhao adoskk

  • Simon Fraser University
  • Vancouver
View GitHub Profile
@adoskk
adoskk / lstm_stock_prediction.ipynb
Created December 2, 2020 08:32
lstm_stock_prediction.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@adoskk
adoskk / autograd_example1.ipynb
Created November 2, 2020 09:50
autograd_example1.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@adoskk
adoskk / gp.m
Created October 17, 2020 06:10
% adapted from https://www.mathworks.com/help/stats/fitrgp.html
% author: Mengliu Zhao
% contact: mengliuz@sfu.ca
close all
clear
clc
rng(0,'twister'); % For reproducibility
n = 1000;
x = linspace(-10,10,n)';
@adoskk
adoskk / ax_bayesianopt.ipynb
Created October 9, 2020 19:50
ax_bayesianopt.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@adoskk
adoskk / test_rayopt.ipynb
Last active October 3, 2020 07:43
test_rayopt.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@adoskk
adoskk / autoencoder.py
Created February 24, 2017 22:58 — forked from gabrieleangeletti/autoencoder.py
Denoising Autoencoder implementation using TensorFlow.
import tensorflow as tf
import numpy as np
import os
import zconfig
import utils
class DenoisingAutoencoder(object):
""" Implementation of Denoising Autoencoders using TensorFlow.