Skip to content

Instantly share code, notes, and snippets.

View PaulZhangIsing's full-sized avatar
🎯
Focusing

Paul Zhang Yixing PaulZhangIsing

🎯
Focusing
  • Panasonic R & D Centre, Singapore
  • Singapore
View GitHub Profile
@apivovarov
apivovarov / convert_tf_ssd_to_tflite.md
Last active January 19, 2023 13:44
Convert Tensorflow SSD models to TFLite format
@derianpt
derianpt / delta_only.js
Last active February 3, 2024 14:15
activesg badminton booking scripts
// ==UserScript==
// @name activesg - single court for 2 hrs
// @namespace blah
// @version 0.6.5
// @description activesg court booking
// @match https://members.myactivesg.com/*
// @copyright 2017+, naresh,Gavin,Kent
// @require http://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
// ==/UserScript==
@urigoren
urigoren / LSTM_Binary.py
Last active June 22, 2023 19:37
LSTM Binary classification with Keras
from keras.layers import Dense, Dropout, LSTM, Embedding
from keras.preprocessing.sequence import pad_sequences
from keras.models import Sequential
import pandas as pd
import numpy as np
input_file = 'input.csv'
def load_data(test_split = 0.2):
print ('Loading data...')