spoorthibhat's picture
Upload 51 files
cba801e verified
raw
history blame contribute delete
171 Bytes
import json
def load_file_jsonl(path):
with open(path) as f:
return [json.loads(row) for row in f]
def get_avg(x):
return sum([float(y) for y in x])/len(x)