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
@PaulZhangIsing
PaulZhangIsing / convert_tf_ssd_to_tflite.md
Created November 12, 2020 06:58 — forked from apivovarov/convert_tf_ssd_to_tflite.md
Convert Tensorflow SSD models to TFLite format
@PaulZhangIsing
PaulZhangIsing / LSTM_Binary.py
Created December 21, 2018 10:19 — forked from urigoren/LSTM_Binary.py
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...')