Repeated objects in csv files

#10
by vxuanz - opened

I use the following code to check whether the objects are all unique, but it turns out that there are some repeated objects. Could you help check it?
'''
import pandas as pd
df = pd.read_csv('/home/plusai/Documents/download_xl/meta_xl_animation_tot.csv')
print(len(df))
unique_values = df['sha256'].unique()
unique_count = len(unique_values)
print(f'unique sha256 num: {unique_count}')
'''

Owner

Hi! Thank you for your interest in our work. Due to the large size of obj-xl, we downloaded and rendered the dataset with multiple sections, with overlap btw. sections. That's why you may observe a few duplicates in the csv file. Please be free to ignore the duplicates.

Thanks for your answer!

vxuanz changed discussion status to closed
This comment has been hidden

Sign up or log in to comment