Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kubeflow/code-intelligence

ML-Powered Developer Tools, using Kubeflow
https://github.com/kubeflow/code-intelligence

deep-learning fastai flask kubeflow kubernetes machine-learning natural-language-processing nlp pytorch rest-api

Last synced: about 1 month ago
JSON representation

ML-Powered Developer Tools, using Kubeflow

Awesome Lists containing this project

README

        

## :warning: **kubeflow/code-intelligence is not maintained**

This repository has been deprecated and [archived](https://github.com/kubeflow/community/issues/479) on Nov 30th, 2021.

# Code Intelligence: ML-Powered Developer Tools
Made with [Kubeflow](https://www.kubeflow.org/)

### **Motivation:**
One of the promises of machine learning is to automate mundane tasks and augment our capabilities, making us all more productive. However, one domain that doesn’t get much attention that is ripe for more automation is the domain of software development itself. This repository contains projects that are **live machine learning-powered devloper tools, usually in the form of GitHub apps, plugins or APIs.**

We build these tools with the help of Kubeflow, in order to dog-food tools that Kubeflow developers themselves will benefit from, but also to surface real-world examples of end-to-end machine learning applications built with Kubeflow.

# Projects

### Deployed

1. [Issue-Label-Bot](https://github.com/marketplace/issue-label-bot): A GitHub App that automatically labels issues as either a feature request, bug or question, using machine learning. The code for this is located in [this repository](https://github.com/machine-learning-apps/Issue-Label-Bot)

2. [Issue-Embeddings](/Issue_Embeddings): A REST-API that returns 2400 dimensional embedding given an issue title and body. This can be used for several downstream applications such as (1) label prediction, (2) duplicate detection (3) reviewer recommendation, etc. You can also retrieve the embeddings for all issues in a repo in bulk at once.

### Under Construction :construction:

1. [Label-Microservice](/Label_Microservice): A stand-alone service that receives as input an issue url: _example: `github.com/kubeflow//issues/_` and returns repo-specific label predictions. This leverages transfer learning via the [Issue-Embeddings](/Issue_Embeddings) API. The goal of this project is to prototype this functionality by redirecting a subset of traffic from Issue-Label-Bot (starting with just Kubeflow/Kubeflow) for testing.

3. [Issue-Triage](/Issue_Triage): Tools that assist with triaging issues for Kubeflow, as discussed in [#280](https://github.com/kubeflow/community/issues/280). This does not use any machine learning as of yet, but is something that is currently under research. The rule-based approach is currently deployed in [this Action](https://github.com/kubeflow/code-intelligence/tree/master/Issue_Triage/action)

3. [Notifications](/Notifications): TODO

# Developer Guide

## Code Organization

We are in the process of organizing all Python code under the directory `py/`.

* Subdirectories of `py/` should be top level packages
* Modules should be imported using absolute imports always