How can I transform this list of lists (or arrays?)
[((1538, 6323), (0.9995334, 0.9995334)), ((7694, 7862, 8399, 9158), array([0.99999015, 0.99997352, 0.99997993, 0.99996219]))]
to this pandas dataframe
ClstId ColInt ColFloat
1 1538 0.9995334
1 6323 0.9995334
2 7694 0.99999015
2 7862 0.99997352
2 8399 0.99997993
2 9158 0.99996219
?