Chris Winsor
Software Developer delivering innovative solutions through Machine Learning.
I am a software developer applying the remarkable advances in machine learning to deliver new and innovative solutions.
Below are recent examples of my academic research and open source projects. My professional experience includes vision and robotics for BioPharma manufacturing and can be found at my LinkedIn.
I’m always looking for projects like the ones below so feel free to reach out!
Chris (cwinsor@gmail.com)
Medical image segmentation: Medical segmentation is unique in requirements and techniques. In this June 2023 project we survey current approaches and deploy a UNet/EfficientNet model for segmentation of GI-tract from MRI. The survey is here with Colab/WandB training results here.
OpenCV Machine Vision: The OpenCV machine vision library is a resource that is rich, deep and broad. It includes vision-specific core elements but also more broadly applicable algorithms such as machine learning and makes these available with Java, C++ and Python interfaces. In this project we start with the Calib3c library to show how a pinhole camera model can be applied to the task of identifying a Backgammon board, arbitrarily positioned and seen in perspective. OpenCV exercise
Graph Neural Networks: Graph-based modeling is a rapidly evolving science, with particular strength in cases where data does not have the regular structure of (say) images or tables. Social networks are an example of arbitrary relationships, and in this project we model relationships in a Twitter dataset as they evolve during the first months of Covid-19. We apply PyTorch Geometric, Sequence Encoder, HeteroConv and a BERT language model. Preprocessing overview, Developer Instructions, Colab Notebook,
StarChaser is a decision-support application, demonstrating how knowledge from Machine Learning can be integrated into an every-day Website/app. It uses Django, Postgres and a little JavaScript. Presentation, Game (username “foo” password “bar”).
Markov Logic Network (MLN) is a new and exciting technique for modeling systems that have structure but are inherently probabilistic. Structure is expressed using first order logic with techniques from Markov Networks used to capture uncertain relationships. A MLN allows deductive reasoning and probabilistic inference. The research is by Pedro Domingos and Matt Richardson at University of Washington. The study can be found here.
Whole-image Classification with Kiras/Tensorflow: This is a self-driving car that (in realtime) classifies images from a front-mounted camera. It is an end-to-end CNN deployed to Raspberry Pi. The project can be found here.
Kaggle PLAsTiCC is a Kaggle competition of transient stars. We survey the approaches for classification of this aperiodic timeseries dataset here.
Tri-Training is a technique that uses unlabeled data for supervised learning! The technique is from an Amazon researcher in Cambridge MA and was used for wake-word detection but the approach can be applied anywhere. We review the 2005 paper by Z. Zhou and M. Lee, and this .pdf captures the details.
The Bootstrap is a principled technique to establish statistical significance to test results. Combined with T-tests this is important to have in the tool belt. The git HERE includes python code that implements Bootstrap. The examples are taken from the text.