File size: 3,352 Bytes
7478fdb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b8bb7f2
7478fdb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import json
import sys
import os
import urllib.request as ureq
import pdb

download=1 # 0 if images are already downloaded

###############################################################
######################### load dataset json file ###############
################################################################
with open('dataset.json', 'r') as fp:
        data = json.load(fp)

## dictionary data contains image URL, questions and answers ##




################################################################
############### Script for downloading images ##################
################################################################
## Make a directory images to store all images there ##########
if download == 1:
    os.mkdir('./images')
    for k in data.keys():
        ext=os.path.splitext(data[k]['imageURL'])[1]
        outputFile='images/%s%s'%(k,ext)
        #pdb.set_trace()
        ureq.urlretrieve(data[k]['imageURL'],outputFile)    



#################################################################
################### Example of data access #####################
################################################################
for k in data.keys():
    ext=os.path.splitext(data[k]['imageURL'])[1]
    imageFile='images/%s%s'%(k,ext)

    print('************************')
    print('Image file: %s'%(imageFile))
    print('List of questions:')
    print(data[k]['questions'])
    print('List of corresponding answers:')
    print(data[k]['answers'])
    print('Use this image as training (1), validation (2) or testing (3): %s'%(data[k]['split']))
    print('*************************')





######################################################################
########################### Get dataset stats ########################
######################################################################
genSet=set()
for k in data.keys():
    genSet.add(data[k]['genre'])



numImages=len(data.keys())
numQApairs=0
numWordsInQuestions=0
numWordsInAnswers=0
numQuestionsPerImage=0
ANS=set() # Set of unique answers
authorSet=set()
bookSet=set()


for imgId in data.keys():
    numQApairs = numQApairs+len(data[imgId]['questions'])
    numQuestionsPerImage = numQuestionsPerImage + len(data[imgId]['questions'])
    authorSet.add(data[imgId]['authorName'])
    bookSet.add(data[imgId]['title'])

    for qno in range(len(data[imgId]['questions'])):
        ques=data[imgId]['questions'][qno]
        numWordsInQuestions = numWordsInQuestions+len(ques.split())
    for ano in range(len(data[imgId]['answers'])):
        ans=data[imgId]['answers'][ano]
        ANS.add(ans)
        numWordsInAnswers = numWordsInAnswers+len(str(ans).split())



print("--------------------------------")
print("Number of Images: %d" %(numImages))
print("Number of QA pairs: %d" %(numQApairs))
print("Number of unique author: %d" %(len(authorSet)))
print("Number of unique title: %d" %(len(bookSet)))
print("Number of unique answers: %d" %(len(ANS)))
print("Number of unique genre: %d" %(len(genSet)))
print("Average question length (in words): %.2f" %(float(numWordsInQuestions)/float(numQApairs)))
print("Average answer length (in words): %.2f" %(float(numWordsInAnswers)/float(numQApairs)))
print("Average number of questions per image: %.2f" %(float(numQuestionsPerImage)/float(numImages)))
print("--------------------------------")