text stringlengths 4 582 |
|---|
End of preview. Expand in Data Studio
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
CaraArchive Index Dataset
1) This is an Index Dataset, not an Image dataset
- This dataset contains 0 image data.
- It only contains links to Cara App's CDN and metadata.
- HuggingFace may load some images in the preview because it detects the CDN links, however those images do not exist as data in this dataset, HF literally just loads them using your own connection as a preview.
2) This dataset is 100% Complete
- It includes 3.43 million posts (and their thumbnails) from 790k users to which belong 8.52 million artworks, making a total of ~12 million image links.
- Every user and every post on the platform (from 14/6/26 and before) is included here.
- Some people got the impression that not all of their posts are there because they searched their names in the CDN URLs, however not all URLs include the name in them (many use server timestamps and random hashes).
How to Query the Database tool.py (make sure catalog.db is in the directory)
To see a clean summary overview of an account
python tool.py --user <username>
To see all artworks, software, metadata and creator for a specific post:
python tool.py --post <Post URL or ID>
To find the post and creator that an artwork belongs to:
python tool.py --art <CDN URL or filename>
Database Structure (catalog.db)
The SQLite database contains 3 main tables:
master_artworks_12m (8,522,366 rows)
Contains all full-resolution master artwork uploads.
id: Unique image ID (<post_id>_slide_<number>)post_id: Post ID this artwork belongs toauthor_slug: Username of the creatorslide_number: Order in the multi-image gallery (1, 2, 3...)title: Post titlecdn_url: Direct high-res CDN linkwidth: Image width in pixelsheight: Image height in pixelscreated_at: Upload timestamp
artworks (3,431,475 rows)
Contains all posts and cover thumbnails.
post_id: Unique post IDauthor_slug: Username of the creatorauthor_id: User UUIDcdn_url: Cover image / thumbnail linkcreated_at: Creation timestamp
post_metadata (3,431,475 rows)
Contains all tags, software, descriptions, and audit statuses.
post_id: Post IDauthor_slug: Usernameauthor_name: Display nametitle: Post titlecontent: Description / lore textsoftwares: Software used (e.g.["Blender", "Photoshop"])tags: Categories and tags (e.g.["Illustration", "ConceptArt"])status_code: HTTP status (200= active,404= deleted post,403= private)is_deleted:1if post was removed,0if activecreated_at: Creation timestamp
- Downloads last month
- 268