Skip to content

Instantly share code, notes, and snippets.

@tuffacton
tuffacton / streamlit_colab.ipynb
Last active March 7, 2024 05:47
Colaboratory Notebook that hosts a streamlit app and creates an ngrok https tunnel for access.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sahanduiuc
Sahanduiuc / gist:3e921cf0b713367dafec3c3165db6196
Created August 24, 2019 11:05 — forked from samchaaa/gist:91dfe2bb3c030321536f9799bb369b26
Alpaca Sample Algo - 5 Minute EMA Crossover
import alpaca_trade_api as tradeapi
import time
import datetime
from datetime import timedelta
from pytz import timezone
tz = timezone('EST')
api = tradeapi.REST('your key',
'your secret',
'https://paper-api.alpaca.markets')
@Sahanduiuc
Sahanduiuc / keras VGG-Face Model.md
Created July 7, 2019 07:54 — forked from EncodeTS/keras VGG-Face Model.md
VGG-Face model for keras

VGG-Face model for Keras

This is the Keras model of VGG-Face.

It has been obtained through the following method:

  • vgg-face-keras:directly convert the vgg-face matconvnet model to keras model
  • vgg-face-keras-fc:first convert vgg-face caffe model to mxnet model,and then convert it to keras model

Details about the network architecture can be found in the following paper: