RobotJelly commited on
Commit
11f30d9
1 Parent(s): 1fa2f36

Document to specify the structure of Photos.tsv file

Browse files
Files changed (1) hide show
  1. Docs.md +41 -0
Docs.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Unsplash Dataset Documentation
2
+
3
+ The Unsplash Dataset is composed of following TSV file:
4
+
5
+ ## photos.tsv
6
+
7
+ The `photos.tsv` dataset has one row per photo. It contains properties of the photo, the name of the contributor, the image URL, and overall stats.
8
+
9
+ | Field | Description |
10
+ |-----------------------------|-------------|
11
+ | photo_id | ID of the Unsplash photo |
12
+ | photo_url | Permalink URL to the photo page on unsplash.com |
13
+ | photo_image_url | URL of the image file. Note: this is a [dynamic URL](https://unsplash.com/documentation#dynamically-resizable-images), so you can apply [resizing and customization operations directly on the image](https://unsplash.com/documentation#supported-parameters) |
14
+ | photo_submitted_at | Timestamp of when the photo was submitted to Unsplash |
15
+ | photo_featured | Whether the photo was promoted to the [Editorial feed](https://unsplash.com/) or not |
16
+ | photo_width | Width of the photo in pixels |
17
+ | photo_height | Height of the photo in pixels |
18
+ | photo_aspect_ratio | Aspect ratio of the photo |
19
+ | photo_description | Description of the photo written by the photographer |
20
+ | photographer_username | Username of the photographer on Unsplash |
21
+ | photographer_first_name | First name of the photographer |
22
+ | photographer_last_name | Last name of the photographer |
23
+ | exif_camera_make | Camera make (brand) extracted from the EXIF data |
24
+ | exif_camera_model | Camera model extracted from the EXIF data |
25
+ | exif_iso | ISO setting of the camera, extracted from the EXIF data |
26
+ | exif_aperture_value | Aperture setting of the camera, extracted from the EXIF data |
27
+ | exif_focal_length | Focal length setting of the camera, extracted from the EXIF data |
28
+ | exif_exposure_time | Exposure time setting of the camera, extracted from the EXIF data |
29
+ | photo_location_name | Location of the photo |
30
+ | photo_location_latitude | Latitude of the photo |
31
+ | photo_location_longitude | Longitude of the photo |
32
+ | photo_location_country | Country where the photo was made |
33
+ | photo_location_city | City where the photo was made |
34
+ | stats_views | Total # of times that a photo has been viewed on the Unsplash platform |
35
+ | stats_downloads | Total # of times that a photo has been downloaded via the Unsplash platform |
36
+ | ai_description | Textual description of the photo, generated by a 3rd party AI |
37
+ | ai_primary_landmark_name | Landmark present in the photo, generated by a 3rd party AI |
38
+ | ai_primary_landmark_latitude | Latitude of the landmark, generated by a 3rd party AI |
39
+ | ai_primary_landmark_longitude | Longitude of the landmark, generated by a 3rd party AI |
40
+ | ai_primary_landmark_confidence | Landmark confidence of the 3rd party AI |
41
+ | blur_hash | [BlurHash](https://blurha.sh/) hash of the photo |