Added updated reference, added python2 guard from graph.py
This commit is contained in:
parent
f2cba7d4af
commit
3e503fa7b2
|
@ -1,10 +1,15 @@
|
|||
import os
|
||||
import json
|
||||
import sys
|
||||
import matplotlib.pyplot as plt
|
||||
import numpy as np
|
||||
from tqdm import tqdm
|
||||
from datetime import datetime
|
||||
|
||||
if sys.version_info < (3,0):
|
||||
print("Run me with python3, not python2!")
|
||||
sys.exit(1)
|
||||
|
||||
num_runs = 100
|
||||
dict_of_dict_of_lists = dict()
|
||||
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue