Created
August 26, 2018 03:48
-
-
Save khuangaf/f1b65d67525e4eb32ac4373cb6aed621 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
df = pd.DataFrame(columns=['id', 'prediction', 'confidence']) | |
df['id'] = image_ids | |
df['prediction'] = predictions | |
df['confidence'] = confidences | |
df.to_csv(f'{args.results_dir}/{video_id}.csv', index=None) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment