datasets.py [214:227]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        count = 0

        with open(file_name, 'r', encoding='utf-8') as file:
            header = file.readline()
            for line in file:
                count += 1
                try:
                    if count % 100 == 0:
                        logger.info('Processing image id # : %s' % count)

                    image_id, \
                        image_feature, \
                        cleaned_image_questions, \
                        image_url, keyword = self.get_processed_fields(line, file_name, build_image_feature=True)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



datasets.py [245:257]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        count = 0

        with open(file_name, 'r', encoding='utf-8') as file:
            header = file.readline()
            for line in file:
                count += 1
                try:
                    if count % 100 == 0:
                        logger.info('Processing image id # : %s' % count)
                    image_id, \
                        image_feature, \
                        cleaned_image_questions, \
                        image_url, keyword = self.get_processed_fields(line, file_name, build_image_feature=True)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



