BigDaMa / abstraction-layer

Apache License 2.0
4 stars 8 forks source link

Bug if data is not unicode encoded #7

Closed FelixNeutatz closed 5 years ago

FelixNeutatz commented 6 years ago

We have to change it accordingly:

        for row, column, value in detected_cells_list:
            i = int(row)
            j = int(column)
            try:
                v = value.decode("utf-8")
            except UnicodeEncodeError:
                v = value

example: Beers dataset

m-mahdavi commented 5 years ago

Fixed.