davanstrien HF Staff commited on
Commit
9ddfe49
·
verified ·
1 Parent(s): 989d15a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -35
README.md CHANGED
@@ -1,37 +1,53 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: raw_queries
7
- list: string
8
- - name: broad_topical_query
9
- dtype: string
10
- - name: broad_topical_explanation
11
- dtype: string
12
- - name: specific_detail_query
13
- dtype: string
14
- - name: specific_detail_explanation
15
- dtype: string
16
- - name: visual_element_query
17
- dtype: string
18
- - name: visual_element_explanation
19
- dtype: string
20
- - name: parsed_into_json
21
- dtype: bool
22
- - name: extraction
23
- dtype: string
24
- - name: inference_info
25
- dtype: string
26
- splits:
27
- - name: train
28
- num_bytes: 586041
29
- num_examples: 5
30
- download_size: 597068
31
- dataset_size: 586041
32
- configs:
33
- - config_name: default
34
- data_files:
35
- - split: train
36
- path: data/train-*
37
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - ocr
4
+ - structured-extraction
5
+ - document-processing
6
+ - nuextract3
7
+ - markdown
8
+ - uv-script
9
+ - generated
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
+
12
+ # NuExtract3 on davanstrien/ufo-ColPali
13
+
14
+ This dataset contains outputs from [davanstrien/ufo-ColPali](https://huggingface.co/datasets/davanstrien/ufo-ColPali) processed with [NuExtract3](https://huggingface.co/numind/NuExtract3), a 4B vision-language model for document understanding.
15
+
16
+ ## Processing Details
17
+
18
+ - **Source Dataset**: [davanstrien/ufo-ColPali](https://huggingface.co/datasets/davanstrien/ufo-ColPali)
19
+ - **Model**: [numind/NuExtract3](https://huggingface.co/numind/NuExtract3)
20
+ - **Mode**: structured-extraction
21
+ - **Number of Samples**: 5
22
+ - **Processing Time**: 4.3 min
23
+ - **Processing Date**: 2026-05-19 17:54 UTC
24
+
25
+ ### Configuration
26
+
27
+ - **Image Column**: `image`
28
+ - **Output Column**: `extraction`
29
+ - **Dataset Split**: `train`
30
+ - **Temperature**: 0.2
31
+ - **Thinking Mode**: disabled
32
+
33
+ ### Extraction Template
34
+
35
+ ```json
36
+ {
37
+ "title": "verbatim-string",
38
+ "publication": "verbatim-string",
39
+ "date": "date",
40
+ "key_entities": [
41
+ "verbatim-string"
42
+ ]
43
+ }
44
+ ```
45
+
46
+ ## Dataset Structure
47
+
48
+ Original columns plus:
49
+ - `extraction`: NuExtract3 output (JSON string)
50
+ - `inference_info`: JSON list tracking models applied to this dataset
51
+
52
+
53
+ Generated with [UV Scripts](https://huggingface.co/uv-scripts)