I want to remove the outer list from dictionary values but I can only find the unpacking method not sure how to use this on dictionary values.
My data looks like this:
{'A': array([[ 1.90769404e-01, 1.26112014e-01, -2.17013955e-02]],
'B': array([[ 2.80194253e-01, 1.19333006e-01, 3.63824964e-02]],
'C': array([[ 1.40285566e-01, 4.76801395e-02, 5.49828596e-02]]}
I want to remove the outer lists to make them like this:
{'A': array([ 1.90769404e-01, 1.26112014e-01, -2.17013955e-02],
'B': array([ 2.80194253e-01, 1.19333006e-01, 3.63824964e-02],
'C': array([ 1.40285566e-01, 4.76801395e-02, 5.49828596e-02]}
How can I do this?