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 platform | |
import requests | |
import os | |
import subprocess | |
def get_key(): | |
if 'Darwin' in platform.platform(): | |
url = 'https://www.roboti.us/getid/getid_osx' | |
elif 'Linux' in platform.platform(): | |
url = 'https://www.roboti.us/getid/getid_linux' |
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 sys | |
import pandas as pd | |
import numpy as np | |
import os | |
import wandb | |
import matplotlib.pyplot as plt | |
import json | |
import seaborn as sns | |
import json | |
import re |
OlderNewer