Skip to content
View addisonklinke's full-sized avatar
Block or Report

Block or report addisonklinke

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
addisonklinke/README.md

Hello there 👋 I'm Addison

Find me around the web

Stack Overflow PyTorch Forums PyTorch Lightning Slack LinkedIn Etsy MLops.community Slack LeetCode

Or writing jokes in code

from bs4 import BeautifulSoup
import torch, torchaudio, torchtext
from torch import nn


class UltimateMLPipeline(nn.Module):
    """An engineer can dream"""

    def __init__(self, pretrained=True):
        super().__init__()
        self.asr_model = torchaudio.asr.get_sota_model()
        self.ner_model = torchtext.ner.get_sota_model()

    def forward(self, exec_meeting_audio, implementation_url='https://paperswithcode.com'):
        business_needs = self.asr_model(exec_meeting_audio)
        latest_research = self.ner_model(BeautifulSoup(implementation_url, 'html.parser'))
        similarity_score = torch.cdist(latest_research, business_needs.use_case, p=2)
        ml_task = torch.max(similarity_score)
        top_papers = ml_task.filter(language__isin=business_needs.tech_stack).order_by(business_needs.kpi)
        best_model = top_papers[0].implementation.get_model(pretrained=True)
        return best_model(business_needs.input)


model = UltimateMLPipeline()
torch.save(model.state_dict(), 'UltimateMLPipeline.ckpt')  # Weights available tomorrow ;)

⚡ Tools I've Worked With

Languages Python C/C++ R Shell jQuery TeX

ML PyTorch PyTorch Lightning Ray Tune Tensorflow Keras Scikit-Learn ONNX

MLops MLflow Hydra Dolt

Data Pandas NumPy OpenCV

Cloud AWS Google Cloud

Web Django Postgres Bootstrap

OS Linux Ubuntu Docke(r

DevOps Git GitHub Bitbucket

📈 Stats

LeetCode user addisonklinke

Addison's GitHub stats

Addison's Top Languages

Addison's StackOverflow

Pinned

  1. investing investing Public

    Automated scripts for monitoring long-term stock trends

    Python 2 1

  2. pytorch-architectures pytorch-architectures Public

    PyTorch implementations of research paper model architectures

    Python 4 2

  3. rainflow rainflow Public

    Extract cyclic features from compressed time series

    R 1 1

  4. bash-utilities bash-utilities Public

    Custom bash commands for added shell functionality

    Shell 2

  5. garmin-train garmin-train Public

    Python utilities for handling Garmin workout data

    Python