This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Go 3 hrs 43 mins βββββββββββββββββββββ 65.0% | |
C 33 mins βββββββββββββββββββββ 9.7% | |
YAML 32 mins βββββββββββββββββββββ 9.4% | |
C++ 14 mins βββββββββββββββββββββ 4.3% | |
Docker 13 mins βββββββββββββββββββββ 3.8% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import matplotlib.pyplot as plt | |
from sklearn.linear_model import LinearRegression | |
from sklearn.metrics import r2_score | |
def plot(): | |
fig, axs = plt.subplots(1, 2) | |
fig.set_size_inches(12, 5) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import pandas as pd | |
import seaborn as sn | |
from sklearn import metrics | |
import matplotlib.pyplot as plt | |
TEST_SET_SIZE = 30 | |
THRESHOLD = .5 |