-
Notifications
You must be signed in to change notification settings - Fork 0
/
attributes.py
43 lines (39 loc) · 1.3 KB
/
attributes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import pandas as pd
attributes_list =[ 'image_name',
'Age16-30',
'Age31-45',
'Age46-60',
'AgeAbove61',
'Backpack',
'CarryingOther',
'Casual lower',
'Casual upper',
'Formal lower',
'Formal upper',
'Hat',
'Jacket',
'Jeans',
'Leather Shoes',
'Logo',
'Long hair',
'Male',
'Messenger Bag',
'Muffler',
'No accessory',
'No carrying',
'Plaid',
'PlasticBags',
'Sandals',
'Shoes',
'Shorts',
'Short Sleeve',
'Skirt',
'Sneaker',
'Stripes',
'Sunglasses',
'Trousers',
'Tshirt',
'UpperOther',
'V-Neck']
# Create the data frame which contains the info of every image and its attributes
df_attributes = pd.DataFrame(columns = attributes_list)