I have a list with information about ~400 collected papers where each element of the list is organized as follows:
title: "A 281.6mW Real-Time Depth Signal Processing Unit for Deep Learning-Based Dense ",
author: "Im, Park, Li, et al.",
affiliation: "KAI ",
year: 2022,
publisher: "IEEE International SState CC",
url: "-",
short: "ISSCC 22'",
fabric: "28nm CMOS @ 0.72-1.1V 250MHz ",
accl_s: 4500,
accl_p: 0.5447,
ee: "8261.4 GOPs/W",
s1: 2,
s2: 1,
s3: 2,
support: 1,
performance: 2,
benchmark: "Depth CNN(8-bit float)",
mul_p: 1,
w_p: 3,
a_p: 3,
sparse_support: 2,
sparse_policy: 1,
sparsity: 1
How can I convert such a list to a dataframe with multiple columns (Title, author affiliation ...)? Herer is the code I used to read in the data:
my_file = open('data.txt', 'r')
lines = my_file.read().split("},")