Skip to content

Commit e478e5c

Browse files
committed
Need to read first column as index
1 parent 4ca0de7 commit e478e5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simvue/serialization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def _deserialize_dataframe(data):
135135

136136
mfile = BytesIO(data)
137137
mfile.seek(0)
138-
data = pd.read_csv(mfile)
138+
data = pd.read_csv(mfile, index_col=0)
139139
return data
140140

141141
def _deserialize_torch_tensor(data):

0 commit comments

Comments
 (0)