Skip to content

Instantly share code, notes, and snippets.

@sshariff01
sshariff01 / Design.md
Created October 13, 2019 17:58
CS6440 Design Doc

Design Document

Author: Team West Coasters Team: Team West Coasters

1 Design Considerations

1.1 Assumptions

@sshariff01
sshariff01 / BagLearner.py
Last active July 20, 2019 22:36
ML4T - Project 8
import numpy as np
import RTLearner as rtl
from scipy import stats
import pdb
class BagLearner(object):
def __init__(self, learner=rtl.RTLearner, kwargs={}, bags=10, boost=False, verbose=False):
self.learner = learner
self.bags = bags
"""MC4-P6: Manual Strategy - Theoretical Optimal Strategy
Copyright 2018, Georgia Institute of Technology (Georgia Tech)
Atlanta, Georgia 30332
All Rights Reserved
Template code for CS 4646/7646
Georgia Tech asserts copyright ownership of this template and all derivative
works, including solutions to the projects assigned in this course. Students
@sshariff01
sshariff01 / ManualStrategy.py
Last active July 1, 2019 05:05
ML4T - Project 6
"""
Student Name: Shoabe Shariff
GT User ID: sshariff3
GT ID: 903272097
"""
import pandas as pd
import numpy as np
import datetime as dt
import os
@sshariff01
sshariff01 / marketsim.py
Last active June 26, 2019 00:44
ML4T - Project 5
"""MC2-P1: Market simulator.
Copyright 2018, Georgia Institute of Technology (Georgia Tech)
Atlanta, Georgia 30332
All Rights Reserved
Template code for CS 4646/7646
Georgia Tech asserts copyright ownership of this template and all derivative
works, including solutions to the projects assigned in this course. Students
@sshariff01
sshariff01 / optimization.py
Created May 23, 2019 03:46
ML4T - Project 2
"""MC1-P2: Optimize a portfolio.
Copyright 2018, Georgia Institute of Technology (Georgia Tech)
Atlanta, Georgia 30332
All Rights Reserved
Template code for CS 4646/7646
Georgia Tech asserts copyright ownership of this template and all derivative
works, including solutions to the projects assigned in this course. Students
@sshariff01
sshariff01 / martingale.py
Last active May 20, 2019 05:51
ML4T - Project 1
"""Assess a betting strategy.
Copyright 2018, Georgia Institute of Technology (Georgia Tech)
Atlanta, Georgia 30332
All Rights Reserved
Template code for CS 4646/7646
Georgia Tech asserts copyright ownership of this template and all derivative
works, including solutions to the projects assigned in this course. Students
@sshariff01
sshariff01 / process.py
Created March 9, 2019 05:18
processor
#!/usr/bin/env python
snort_output_file = open("./snort_output.txt")
valid_types = ["OTHER", "CNC", "INFECTION"]
all_cxns = set()
other_cxns = set()
cnc_cxns = set()
infection_cxns = set()