Assume I have a dictionary in the following format:
{
"model1": 0.5,
"model2": 0.6,
"model3": 0.7
}
How would I load it into a pandas dataframe such that it has the following structure:
| Name | Accuracy |
|---|---|
| model1 | 0.5 |
| model2 | 0.6 |
| model3 | 0.7 |
Assume I have a dictionary in the following format:
{
"model1": 0.5,
"model2": 0.6,
"model3": 0.7
}
How would I load it into a pandas dataframe such that it has the following structure:
| Name | Accuracy |
|---|---|
| model1 | 0.5 |
| model2 | 0.6 |
| model3 | 0.7 |