samwaugh commited on
Commit
8d3ef36
·
verified ·
1 Parent(s): d87d4e6

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +109 -0
README.md ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # ArteFact JSON Dataset
6
+
7
+ A structured metadata collection containing comprehensive information about artworks, creators, topics, and sentence-level annotations from the ArteFact art historical corpus.
8
+
9
+ ## Dataset Overview
10
+
11
+ This dataset provides the foundational metadata and structured information that powers the ArteFact AI research platform. It contains 5 essential JSON files that enable cross-referencing between visual artworks, scholarly texts, and semantic embeddings.
12
+
13
+ ## 🏗️ Data Structure
14
+
15
+ ```markdown
16
+ artefact-json/
17
+ ├── creators.json # Artist and creator information
18
+ ├── sentences.json # Sentence-level annotations and metadata
19
+ ├── topic_names.json # Human-readable topic labels
20
+ ├── topics.json # Topic categorization and relationships
21
+ └── works.json # Artwork metadata and descriptions
22
+ ```
23
+
24
+ ## Dataset Statistics
25
+
26
+ - **Total Files**: 5 JSON files
27
+ - **Total Size**: ~1.2 GB
28
+ - **Data Coverage**: 7,200+ artworks and associated metadata
29
+
30
+ ### File Details
31
+
32
+ | File | Size | Description | Records |
33
+ |------|------|-------------|---------|
34
+ | `creators.json` | 850 KB | Artist and creator information | Creator profiles |
35
+ | `sentences.json` | 1.18 GB | Sentence-level annotations | Sentence metadata |
36
+ | `topic_names.json` | 549 B | Human-readable topic labels | Topic mappings |
37
+ | `topics.json` | 1.85 MB | Topic categorization | Topic relationships |
38
+ | `works.json` | 8.5 MB | Artwork metadata | Work descriptions |
39
+
40
+ ## Data Schema
41
+
42
+ ### `creators.json`
43
+ Contains biographical and professional information about artists, architects, and other creators referenced in the corpus.
44
+
45
+ ### `sentences.json`
46
+ The largest file containing sentence-level metadata, annotations, and cross-references between textual content and visual artworks.
47
+
48
+ ### `topic_names.json`
49
+ Human-readable labels for topic categories, enabling semantic search and filtering across the corpus.
50
+
51
+ ### `topics.json`
52
+ Hierarchical topic relationships and categorization data for organizing and filtering art historical content.
53
+
54
+ ### `works.json`
55
+ Comprehensive metadata about individual artworks, including titles, dates, materials, dimensions, and provenance information.
56
+
57
+ ## 🚀 Usage
58
+
59
+ This dataset is designed to work in conjunction with:
60
+ - **`samwaugh/artefact-embeddings`** - Vector embeddings for semantic search
61
+ - **`samwaugh/artefact-markdown`** - Source scholarly texts and images
62
+
63
+ ### Example Use Cases
64
+ - **Metadata-driven search** and filtering
65
+ - **Cross-referencing** between artworks and scholarly texts
66
+ - **Topic modeling** and categorization analysis
67
+ - **Creator relationship** mapping and analysis
68
+ - **Art historical research** and data mining
69
+ - **AI training** for art understanding models
70
+
71
+ ## Data Relationships
72
+
73
+ The JSON files are interconnected through shared identifiers:
74
+ - **Work IDs** (e.g., `W1009740230`) link works to their metadata
75
+ - **Creator IDs** connect artists to their works and biographical data
76
+ - **Topic IDs** enable categorization and semantic organization
77
+ - **Sentence IDs** provide granular access to textual content
78
+
79
+ ## 📖 Citation
80
+
81
+ If you use this dataset in your research, please cite:
82
+
83
+ ```bibtex
84
+ @dataset{artefact_json_2024,
85
+ title={ArteFact JSON Dataset},
86
+ author={Waugh, Samuel},
87
+ year={2024},
88
+ publisher={Hugging Face},
89
+ url={https://huggingface.co/datasets/samwaugh/artefact-json}
90
+ }
91
+ ```
92
+
93
+ ## 🔗 Related Resources
94
+
95
+ - **ArteFact Platform**: [samwaugh/artefact](https://huggingface.co/spaces/samwaugh/artefact)
96
+ - **Embeddings Dataset**: [samwaugh/artefact-embeddings](https://huggingface.co/datasets/samwaugh/artefact-embeddings)
97
+ - **Markdown Dataset**: [samwaugh/artefact-markdown](https://huggingface.co/datasets/samwaugh/artefact-markdown)
98
+
99
+ ## 📄 License
100
+
101
+ This dataset is released under the MIT License. See the [LICENSE](LICENSE) file for details.
102
+
103
+ ## Contributing
104
+
105
+ This dataset is part of the larger ArteFact project. For questions, issues, or contributions, please refer to the main ArteFact repository.
106
+
107
+ ---
108
+
109
+ *Part of the ArteFact AI Research Platform - Bridging Visual Art and Textual Scholarship*