Huseyin Kir commited on
Commit
3581a5e
·
1 Parent(s): d4eb71c

croissant file added

Browse files
Files changed (1) hide show
  1. croissant.json +78 -0
croissant.json ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": "https://w3id.org/croissant/v1",
3
+ "@type": "Dataset",
4
+
5
+ "name": "NDL Core RAG Index",
6
+ "description": "A retrieval-augmented generation (RAG) index built over the NDL Core Corpus. The dataset contains pre-computed text chunks with source identifiers and a FAISS vector index to enable semantic retrieval without recomputing embeddings.",
7
+
8
+ "creator": {
9
+ "@type": "Organization",
10
+ "name": "The Open Data Institute"
11
+ },
12
+
13
+ "publisher": {
14
+ "@type": "Organization",
15
+ "name": "The Open Data Institute"
16
+ },
17
+
18
+ "license": {
19
+ "@type": "CreativeWork",
20
+ "name": "Open Government Licence v3.0",
21
+ "url": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"
22
+ },
23
+
24
+ "conditionsOfAccess": "Open access. This dataset contains derived representations (text chunks and embeddings) of public sector data. Original source records retain their own licence references in the source dataset.",
25
+
26
+ "keywords": [
27
+ "retrieval augmented generation",
28
+ "rag",
29
+ "faiss",
30
+ "vector index",
31
+ "ai-ready data",
32
+ "national data library",
33
+ "semantic search"
34
+ ],
35
+
36
+ "distribution": [
37
+ {
38
+ "@type": "FileObject",
39
+ "name": "chunks.parquet",
40
+ "description": "Parquet file containing text chunks and metadata, including identifiers linking each chunk to its original source record.",
41
+ "contentUrl": "chunks.parquet",
42
+ "encodingFormat": "application/parquet"
43
+ },
44
+ {
45
+ "@type": "FileObject",
46
+ "name": "index.faiss",
47
+ "description": "FAISS vector index built over the embeddings of the text chunks to support fast semantic retrieval.",
48
+ "contentUrl": "index.faiss",
49
+ "encodingFormat": "application/octet-stream"
50
+ },
51
+ {
52
+ "@type": "FileObject",
53
+ "name": "rag_config.json",
54
+ "description": "Machine-readable configuration describing the embedding model, chunking strategy, and index construction parameters.",
55
+ "contentUrl": "rag_config.json",
56
+ "encodingFormat": "application/json"
57
+ }
58
+ ],
59
+
60
+ "isBasedOn": {
61
+ "@type": "Dataset",
62
+ "name": "NDL Core Corpus",
63
+ "url": "https://huggingface.co/datasets/hkir-dev/ndl-core-corpus"
64
+ },
65
+
66
+ "intendedUse": [
67
+ "Retrieval-augmented generation",
68
+ "Semantic search",
69
+ "AI agent knowledge access",
70
+ "Policy and public sector AI experimentation"
71
+ ],
72
+
73
+ "limitations": "This RAG index is a static snapshot and reflects the state of the underlying source corpus at the time of index construction. It is not updated in real time.",
74
+
75
+ "conformsTo": [
76
+ "https://w3id.org/croissant"
77
+ ]
78
+ }