Merge `v1.0_updating` into `main`
#2
by
jespark
- opened
This view is limited to 50 files because it contains too many changes.
See the raw diff here.
- README.md +89 -6
- data/commercial/HFCF_Commercial_0.parquet +3 -0
- data/commercial/HFCF_Commercial_1.parquet +3 -0
- data/manual/HFCF_Manual_0.parquet +3 -0
- data/manual/HFCF_Manual_1.parquet +3 -0
- data/manual/HFCF_Manual_10.parquet +3 -0
- data/manual/HFCF_Manual_11.parquet +3 -0
- data/manual/HFCF_Manual_12.parquet +3 -0
- data/manual/HFCF_Manual_13.parquet +3 -0
- data/manual/HFCF_Manual_14.parquet +3 -0
- data/manual/HFCF_Manual_15.parquet +3 -0
- data/manual/HFCF_Manual_16.parquet +3 -0
- data/manual/HFCF_Manual_17.parquet +3 -0
- data/manual/HFCF_Manual_18.parquet +3 -0
- data/manual/HFCF_Manual_19.parquet +3 -0
- data/manual/HFCF_Manual_2.parquet +3 -0
- data/manual/HFCF_Manual_20.parquet +3 -0
- data/manual/HFCF_Manual_21.parquet +3 -0
- data/manual/HFCF_Manual_22.parquet +3 -0
- data/manual/HFCF_Manual_23.parquet +3 -0
- data/manual/HFCF_Manual_24.parquet +3 -0
- data/manual/HFCF_Manual_25.parquet +3 -0
- data/manual/HFCF_Manual_26.parquet +3 -0
- data/manual/HFCF_Manual_27.parquet +3 -0
- data/manual/HFCF_Manual_28.parquet +3 -0
- data/manual/HFCF_Manual_29.parquet +3 -0
- data/manual/HFCF_Manual_3.parquet +3 -0
- data/manual/HFCF_Manual_30.parquet +3 -0
- data/manual/HFCF_Manual_31.parquet +3 -0
- data/manual/HFCF_Manual_32.parquet +3 -0
- data/manual/HFCF_Manual_33.parquet +3 -0
- data/manual/HFCF_Manual_34.parquet +3 -0
- data/manual/HFCF_Manual_35.parquet +3 -0
- data/manual/HFCF_Manual_36.parquet +3 -0
- data/manual/HFCF_Manual_37.parquet +3 -0
- data/manual/HFCF_Manual_38.parquet +3 -0
- data/manual/HFCF_Manual_39.parquet +3 -0
- data/manual/HFCF_Manual_4.parquet +3 -0
- data/manual/HFCF_Manual_40.parquet +3 -0
- data/manual/HFCF_Manual_41.parquet +3 -0
- data/manual/HFCF_Manual_42.parquet +3 -0
- data/manual/HFCF_Manual_43.parquet +3 -0
- data/manual/HFCF_Manual_44.parquet +3 -0
- data/manual/HFCF_Manual_45.parquet +3 -0
- data/manual/HFCF_Manual_46.parquet +3 -0
- data/manual/HFCF_Manual_47.parquet +3 -0
- data/manual/HFCF_Manual_48.parquet +3 -0
- data/manual/HFCF_Manual_49.parquet +3 -0
- data/manual/HFCF_Manual_5.parquet +3 -0
- data/manual/HFCF_Manual_50.parquet +3 -0
README.md
CHANGED
@@ -3,6 +3,21 @@ license: cc-by-4.0
|
|
3 |
task_categories:
|
4 |
- image-classification
|
5 |
pretty_name: Community Forensics
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
tags:
|
7 |
- image
|
8 |
size_categories:
|
@@ -11,10 +26,13 @@ language:
|
|
11 |
- en
|
12 |
---
|
13 |
|
14 |
-
#
|
15 |
[Paper](https://arxiv.org/abs/2411.04125)/[Project Page](https://jespark.net/projects/2024/community_forensics/)
|
16 |
|
17 |
-
|
|
|
|
|
|
|
18 |
|
19 |
## Dataset Summary
|
20 |
- The Community Forensics dataset is a dataset intended for developing and benchmarking forensics methods that detect or analyze AI-generated images. It contains 2.7M generated images collected from 4803 generator models.
|
@@ -22,7 +40,6 @@ Currently working on formatting and uploading the data. Full dataset will be rel
|
|
22 |
## Supported Tasks
|
23 |
- Image Classification: identify whether the given image is AI-generated. We mainly study this task in our paper, but other tasks may be possible with our dataset.
|
24 |
|
25 |
-
|
26 |
# Dataset Structure
|
27 |
## Data Instances
|
28 |
Our dataset is formatted in a Parquet data frame of the following structure:
|
@@ -31,12 +48,15 @@ Our dataset is formatted in a Parquet data frame of the following structure:
|
|
31 |
"image_name": "00000162.png",
|
32 |
"format": "PNG",
|
33 |
"resolution": "[512, 512]",
|
|
|
34 |
"image_data": "b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\..."
|
35 |
"model_name": "stabilityai/stable-diffusion-2",
|
|
|
36 |
"prompt": "montreal grand prix 2018 von icrdesigns",
|
37 |
"real_source": "LAION",
|
38 |
"subset": "Systematic",
|
39 |
"split": "train",
|
|
|
40 |
}
|
41 |
```
|
42 |
|
@@ -44,17 +64,80 @@ Our dataset is formatted in a Parquet data frame of the following structure:
|
|
44 |
`image_name`: Filename of an image. \
|
45 |
`format`: PIL image format. \
|
46 |
`resolution`: Image resolution. \
|
|
|
47 |
`image_data`: Image data in byte format. Can be read using Python's BytesIO. \
|
48 |
`model_name`: Name of the model used to sample this image. Has format {author_name}/{model_name} for `Systematic` subset, and {model_name} for other subsets. \
|
|
|
49 |
`prompt`: Input prompt (if exists). \
|
50 |
`real_source`: Paired real dataset(s) that was used to source the prompts or to train the generators. \
|
51 |
`subset`: Denotes which subset the image belongs to (Systematic: Hugging Face models, Manual: manually downloaded models, Commercial: commercial models). \
|
52 |
-
`split`: Train/test split.
|
|
|
53 |
|
54 |
## Data splits
|
55 |
`Systematic`: Systematically downloaded subset of the data (data downloaded from Hugging Face via automatic pipeline) \
|
56 |
`Manual`: Manually downloaded subset of the data \
|
57 |
-
`Commercial`: Commercial models subset
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
# Dataset Creation
|
60 |
## Curation Rationale
|
@@ -81,7 +164,7 @@ The generative models are sourced from the community and may contain inappropria
|
|
81 |
We thank the creators of the many open source models that we used to collect the Community Forensics dataset. We thank Chenhao Zheng, Cameron Johnson, Matthias Kirchner, Daniel Geng, Ziyang Chen, Ayush Shrivastava, Yiming Dou, Chao Feng, Xuanchen Lu, Zihao Wei, Zixuan Pan, Inbum Park, Rohit Banerjee, and Ang Cao for the valuable discussions and feedback. This research was developed with funding from the Defense Advanced Research Projects Agency (DARPA) under Contract No. HR001120C0123.
|
82 |
|
83 |
## Licensing Information
|
84 |
-
We release the dataset with a `cc-by-4.0` license for research purposes only. In addition, we note that each image in this dataset has been generated by the models with their respective licenses. We therefore provide metadata of all models present in our dataset with their license information. A vast majority of the generators use the [CreativeML OpenRAIL-M license](https://github.com/CompVis/stable-diffusion/blob/main/LICENSE). Please refer to the metadata for detailed licensing information for your specific application.
|
85 |
|
86 |
## Citation Information
|
87 |
```
|
|
|
3 |
task_categories:
|
4 |
- image-classification
|
5 |
pretty_name: Community Forensics
|
6 |
+
configs:
|
7 |
+
- config_name: default
|
8 |
+
data_files:
|
9 |
+
- split: Systematic
|
10 |
+
path:
|
11 |
+
- data/systematic/*.parquet
|
12 |
+
- split: Manual
|
13 |
+
path:
|
14 |
+
- data/manual/*.parquet
|
15 |
+
- split: PublicEval
|
16 |
+
path:
|
17 |
+
- data/publicEval/*.parquet
|
18 |
+
- split: Commercial
|
19 |
+
path:
|
20 |
+
- data/commercial/*.parquet
|
21 |
tags:
|
22 |
- image
|
23 |
size_categories:
|
|
|
26 |
- en
|
27 |
---
|
28 |
|
29 |
+
# *Community Forensics: Using Thousands of Generators to Train Fake Image Detectors (CVPR 2025)*
|
30 |
[Paper](https://arxiv.org/abs/2411.04125)/[Project Page](https://jespark.net/projects/2024/community_forensics/)
|
31 |
|
32 |
+
*We are currently working on releasing a smaller version of our dataset paired with redistributable "real" data for easier prototyping.*
|
33 |
+
|
34 |
+
*Changes:* \
|
35 |
+
*04/09/25: Initial version released.*
|
36 |
|
37 |
## Dataset Summary
|
38 |
- The Community Forensics dataset is a dataset intended for developing and benchmarking forensics methods that detect or analyze AI-generated images. It contains 2.7M generated images collected from 4803 generator models.
|
|
|
40 |
## Supported Tasks
|
41 |
- Image Classification: identify whether the given image is AI-generated. We mainly study this task in our paper, but other tasks may be possible with our dataset.
|
42 |
|
|
|
43 |
# Dataset Structure
|
44 |
## Data Instances
|
45 |
Our dataset is formatted in a Parquet data frame of the following structure:
|
|
|
48 |
"image_name": "00000162.png",
|
49 |
"format": "PNG",
|
50 |
"resolution": "[512, 512]",
|
51 |
+
"mode": "RGB",
|
52 |
"image_data": "b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\..."
|
53 |
"model_name": "stabilityai/stable-diffusion-2",
|
54 |
+
"nsfw_flag": False,
|
55 |
"prompt": "montreal grand prix 2018 von icrdesigns",
|
56 |
"real_source": "LAION",
|
57 |
"subset": "Systematic",
|
58 |
"split": "train",
|
59 |
+
"label": "1"
|
60 |
}
|
61 |
```
|
62 |
|
|
|
64 |
`image_name`: Filename of an image. \
|
65 |
`format`: PIL image format. \
|
66 |
`resolution`: Image resolution. \
|
67 |
+
`mode`: PIL image mode (e.g., RGB) \
|
68 |
`image_data`: Image data in byte format. Can be read using Python's BytesIO. \
|
69 |
`model_name`: Name of the model used to sample this image. Has format {author_name}/{model_name} for `Systematic` subset, and {model_name} for other subsets. \
|
70 |
+
`nsfw_flag`: NSFW flag determined using [Stable Diffusion Safety Checker](https://huggingface.co/CompVis/stable-diffusion-safety-checker). \
|
71 |
`prompt`: Input prompt (if exists). \
|
72 |
`real_source`: Paired real dataset(s) that was used to source the prompts or to train the generators. \
|
73 |
`subset`: Denotes which subset the image belongs to (Systematic: Hugging Face models, Manual: manually downloaded models, Commercial: commercial models). \
|
74 |
+
`split`: Train/test split. \
|
75 |
+
`label`: Fake/Real label. (1: Fake, 0: Real)
|
76 |
|
77 |
## Data splits
|
78 |
`Systematic`: Systematically downloaded subset of the data (data downloaded from Hugging Face via automatic pipeline) \
|
79 |
`Manual`: Manually downloaded subset of the data \
|
80 |
+
`Commercial`: Commercial models subset \
|
81 |
+
`PublicEval`: Evaluation set where generated images are paired with COCO or FFHQ for license-compliant redistribution. Note that these are not the "source" datasets used to sample the generated images.
|
82 |
+
|
83 |
+
## Usage examples
|
84 |
+
|
85 |
+
Default train/eval settings:
|
86 |
+
```python
|
87 |
+
import datasets as ds
|
88 |
+
import PIL.Image as Image
|
89 |
+
import io
|
90 |
+
|
91 |
+
# default training set
|
92 |
+
commfor_train = ds.load_dataset("OwensLab/CommunityForensics", split="Systematic+Manual", cache_dir="~/.cache/huggingface/datasets")
|
93 |
+
commfor_eval = ds.load_dataset("OwensLab/CommunityForensics", split="PublicEval", cache_dir="~/.cache/huggingface/datasets")
|
94 |
+
|
95 |
+
# optionally shuffle the dataset
|
96 |
+
commfor_train = commfor_train.shuffle(seed=123, writer_batch_size=3000)
|
97 |
+
|
98 |
+
for i, data in enumerate(commfor_train):
|
99 |
+
img, label = Image.open(io.BytesIO(data['image_data'])), data['label']
|
100 |
+
## Your operations here ##
|
101 |
+
# e.g., img_torch = torchvision.transforms.functional.pil_to_tensor(img)
|
102 |
+
```
|
103 |
+
|
104 |
+
*Note:*
|
105 |
+
- Downloading and indexing the data can take some time, but only for the first time. **Downloading may use up to 2.2TB** (1.1TB data + 1.1TB re-indexed `arrow` files)
|
106 |
+
- It is possible to randomly access data by passing an index (e.g., `commfor_train[10]`, `commfor_train[247]`).
|
107 |
+
- It may be wise to set `cache_dir` to some other directory if your home directory is limited. By default, it will download data to `~/.cache/huggingface/datasets`.
|
108 |
+
|
109 |
+
It is also possible to use streaming for some use cases (e.g., downloading only a certain subset or a small portion of data).
|
110 |
+
```python
|
111 |
+
import datasets as ds
|
112 |
+
import PIL.Image as Image
|
113 |
+
import io
|
114 |
+
|
115 |
+
# full data streaming
|
116 |
+
commfor_train_stream = ds.load_dataset("OwensLab/CommunityForensics", split='Systematic+Manual', streaming=True)
|
117 |
+
|
118 |
+
# streaming only the evaluation set
|
119 |
+
commfor_eval_stream = ds.load_dataset("OwensLab/CommunityForensics", split='PublicEval', streaming=True)
|
120 |
+
|
121 |
+
# streaming only 10% of training data. Note that this does not contain the full set of models!
|
122 |
+
commfor_train_stream_10p = ds.load_dataset("OwensLab/CommunityForensics", split='Systematic[:10%]+Manual[:10%]', streaming=True)
|
123 |
+
|
124 |
+
# optionally shuffle the streaming dataset
|
125 |
+
commfor_train_stream_10p = commfor_train_stream_10p.shuffle(seed=123, buffer_size=3000)
|
126 |
+
|
127 |
+
# usage example
|
128 |
+
for i, data in enumerate(commfor_train_stream_10p):
|
129 |
+
img, label = Image.open(io.BytesIO(data['image_data'])), data['label']
|
130 |
+
## Your operations here ##
|
131 |
+
# e.g., img_torch = torchvision.transforms.functional.pil_to_tensor(img)
|
132 |
+
|
133 |
+
```
|
134 |
+
Please check [Hugging Face documentation](https://huggingface.co/docs/datasets/v3.5.0/loading#slice-splits) for more usage examples.
|
135 |
+
|
136 |
+
### Training fake image classifiers
|
137 |
+
For training a fake image classifier, it is necessary to pair the generated images with "real" images (here, "real" refers to images that are not generated by AI).
|
138 |
+
In our [paper](https://arxiv.org/abs/2411.04125), we used 11 different image datasets: [LAION](https://laion.ai/), [ImageNet](https://www.image-net.org/), [COCO](https://cocodataset.org/), [FFHQ](https://github.com/NVlabs/ffhq-dataset), [CelebA](https://mmlab.ie.cuhk.edu.hk/projects/CelebA.html), [MetFaces](https://github.com/NVlabs/metfaces-dataset), [AFHQ-v2](https://github.com/clovaai/stargan-v2/), [Forchheim](https://faui1-files.cs.fau.de/public/mmsec/datasets/fodb/), [IMD2020](https://staff.utia.cas.cz/novozada/db/), [Landscapes HQ](https://github.com/universome/alis), and [VISION](https://lesc.dinfo.unifi.it/VISION/), for sampling the generators and training the classifiers.
|
139 |
+
To accurately reproduce our training settings, it is necessary to download all datasets and pair them with the generated images.
|
140 |
+
We understand that this may be inconvenient for simple prototyping, and thus are also working on releasing a smaller subset of our dataset, paired with datasets with licenses that allow redistribution (e.g., COCO, FFHQ).
|
141 |
|
142 |
# Dataset Creation
|
143 |
## Curation Rationale
|
|
|
164 |
We thank the creators of the many open source models that we used to collect the Community Forensics dataset. We thank Chenhao Zheng, Cameron Johnson, Matthias Kirchner, Daniel Geng, Ziyang Chen, Ayush Shrivastava, Yiming Dou, Chao Feng, Xuanchen Lu, Zihao Wei, Zixuan Pan, Inbum Park, Rohit Banerjee, and Ang Cao for the valuable discussions and feedback. This research was developed with funding from the Defense Advanced Research Projects Agency (DARPA) under Contract No. HR001120C0123.
|
165 |
|
166 |
## Licensing Information
|
167 |
+
We release the dataset with a `cc-by-4.0` license for research purposes only. In addition, we note that each image in this dataset has been generated by the models with their respective licenses. We therefore provide metadata of all models present in our dataset with their license information. A vast majority of the generators use the [CreativeML OpenRAIL-M license](https://github.com/CompVis/stable-diffusion/blob/main/LICENSE). Please refer to the [metadata](data/metadata) for detailed licensing information for your specific application.
|
168 |
|
169 |
## Citation Information
|
170 |
```
|
data/commercial/HFCF_Commercial_0.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32920865e469ba5b5c8a0c7374d188cdceddd4021534a33122f37dda5a5edd76
|
3 |
+
size 5644850859
|
data/commercial/HFCF_Commercial_1.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4255341d7ba4d70c8f3f14263b63a58e4dc5375ccec7a911015387839b61496d
|
3 |
+
size 10940905927
|
data/manual/HFCF_Manual_0.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bd938abb458e5e5704d7805e911e0b586c2adb06bdde121a9fb05403034b05b0
|
3 |
+
size 1066257029
|
data/manual/HFCF_Manual_1.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:51b3076b11b1953ba6ce47b0a295ed8cb4e90d93bab1e6744dcd5dedda10a54e
|
3 |
+
size 4386314195
|
data/manual/HFCF_Manual_10.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4b8d714745e16f0c02edda6fea4f3f84287ccd4372788c24d07fd56bd2860f03
|
3 |
+
size 3959681594
|
data/manual/HFCF_Manual_11.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:efe535a3ef08529aaa3728e8809cf9f0d9a792d221f829fa5797438886d707e1
|
3 |
+
size 1915645983
|
data/manual/HFCF_Manual_12.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e8c105a19e0ba1ded3ec0fe156edd25520832fd32cf6525a8189249afef20210
|
3 |
+
size 1024721047
|
data/manual/HFCF_Manual_13.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8c01fbc1d0d5bf4bdfc74b9b8604e2301cdf3af7a55ad24714b0f831a7c3eb9e
|
3 |
+
size 995014111
|
data/manual/HFCF_Manual_14.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3675429906015047a421e8dcbf5485b545e73e96fc0b5bec1155a6d0e26475e2
|
3 |
+
size 990160869
|
data/manual/HFCF_Manual_15.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:16ea1abd60a7c89f0133c2d34cb1d3260858705441958787cf55167efd9fc3a3
|
3 |
+
size 994994671
|
data/manual/HFCF_Manual_16.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a8955dacd11e6b7c9313726e6cae5a906101c5f6c69f33c5beb97b4506a8814d
|
3 |
+
size 994376197
|
data/manual/HFCF_Manual_17.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cc743aea281663356bfff859eefe6e3c185d92faa1f4902447f95d1c66e760ca
|
3 |
+
size 2980449154
|
data/manual/HFCF_Manual_18.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e3e9fb74cd4df0112b908ac545005ad8d59a01fef4586c60568f17d4c12fc0da
|
3 |
+
size 2150038302
|
data/manual/HFCF_Manual_19.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:defec9080138e51e9baed91fead448dff0c48fb617dbe97e2b8ff0b64494ae84
|
3 |
+
size 1208602523
|
data/manual/HFCF_Manual_2.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6f365ff37318b7068bcc97b960d41ca22fdf50ad2c1e4f9bed3091b15ddc93d5
|
3 |
+
size 13441289632
|
data/manual/HFCF_Manual_20.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:18328af75c89f35842308ed4454528cc95d408dda012aaa42c829d14d589ae7c
|
3 |
+
size 1206748967
|
data/manual/HFCF_Manual_21.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:98e5a3619f2a82d2cc29e8701dd7f98af7eee6e1d91803d21d59bf79542f9094
|
3 |
+
size 1207737641
|
data/manual/HFCF_Manual_22.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6a2ddde99e2b8a82093dedcf904e1d04441ec94809c355ebeafb2982e7a056b8
|
3 |
+
size 1210316764
|
data/manual/HFCF_Manual_23.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2824860597c4e822dcd2118afd6dcd149b2d6a615fb1b31ba2ffd496166e09a4
|
3 |
+
size 8475950256
|
data/manual/HFCF_Manual_24.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:28267d98a7f864432117811385fd493cef1ff827087fec303e2f7fa645509883
|
3 |
+
size 7939655570
|
data/manual/HFCF_Manual_25.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e88c126b8825b06049fb8267cd91a6237d3b15bcbdba75509366c19398a35a2c
|
3 |
+
size 5705986042
|
data/manual/HFCF_Manual_26.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ab88491a7c69ff3a56f95bd3e862e47789f3527a09b48d0133b5e4fc2e4086e2
|
3 |
+
size 12953551245
|
data/manual/HFCF_Manual_27.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b3f827395ecab3de5147e117dc5f987b3de1fa8505b78e8a1638eb45d518fc00
|
3 |
+
size 10337249235
|
data/manual/HFCF_Manual_28.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ffda22cde45798b84a91da5f6d167d0a58d7b404d77d73586df97437e549c072
|
3 |
+
size 7570813873
|
data/manual/HFCF_Manual_29.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7261b11e678d3df3c3f025422094e7afbd0415a4e763342c48eef17523c7dab3
|
3 |
+
size 3291954597
|
data/manual/HFCF_Manual_3.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:521cc993e351ef09791b7404e4972c6e0a427e31362c39267e0a0c79e03dcbc6
|
3 |
+
size 5683501186
|
data/manual/HFCF_Manual_30.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e3698b2bf24c1628fdbbdcf91e21cd792c8d6f6ee3832e46771d45c4952d043e
|
3 |
+
size 2839005939
|
data/manual/HFCF_Manual_31.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9da33d097f153e8882cdc53d34ced74ad6d3f2aaaae6ce23d027998f3c674dae
|
3 |
+
size 2838063344
|
data/manual/HFCF_Manual_32.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a2019e3d37654b9d864b7474efa61f29a517f7c5a65c370f96154d37dc124163
|
3 |
+
size 1881378734
|
data/manual/HFCF_Manual_33.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a46b148a19237fe046dc99af1ce7653b7946b8e1ef8b3133f79bf0f97d134d54
|
3 |
+
size 116334238
|
data/manual/HFCF_Manual_34.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c7b0200d7467b1dc45b8f332f2fb4ca663dda3acb52e46ec0abb3df221010abf
|
3 |
+
size 115581541
|
data/manual/HFCF_Manual_35.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a9285f167c64dda4e7e013f02a709c1029269df4d4e0c40a876521267e28a9f4
|
3 |
+
size 115354835
|
data/manual/HFCF_Manual_36.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:de3fd3f6c49506302c2b3fdbf1797202191a9f234a9de340462d9436f0e3a1f1
|
3 |
+
size 115434258
|
data/manual/HFCF_Manual_37.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dd130c0babe61d8c53a7c94b0e7a5bb17f830d77a78af804a9e9e1471c1eee46
|
3 |
+
size 115086610
|
data/manual/HFCF_Manual_38.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:79a0106271d509e7836e6a4d0ab0bc401387efb9ebf2ed366a128aeeaa8c1d98
|
3 |
+
size 1303115661
|
data/manual/HFCF_Manual_39.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:785c64f944b10f3f10aecb0074c401cc787d5c35385db05cc9780c11b24fcb4d
|
3 |
+
size 4078474235
|
data/manual/HFCF_Manual_4.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fb7594bcc1b47ba1e81a817c75478f83790daac7568735167e54fda61bc85c81
|
3 |
+
size 1600430244
|
data/manual/HFCF_Manual_40.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7f3e8d011352d32fb56454c70245cf27ea89df9ef65955d325bdee405aabc5e9
|
3 |
+
size 4061520401
|
data/manual/HFCF_Manual_41.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7870afb299a51f7d812748158a52dba8e765c83f0fd169151ab75dc04d3ff615
|
3 |
+
size 4057339587
|
data/manual/HFCF_Manual_42.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:38cfd9eff440766118a739bf8944f75817f77f40b82a25263f98d4b8d2267079
|
3 |
+
size 4056141845
|
data/manual/HFCF_Manual_43.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5cacb029038e7a166ba26fad6d048dab67e2e11ff9ef4609feb65b4a9ef26437
|
3 |
+
size 4055908055
|
data/manual/HFCF_Manual_44.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0941e82ca5e7a34712f5d14340bb3fbcd71ae8ba40cb173c82f64537132d9e63
|
3 |
+
size 3220749535
|
data/manual/HFCF_Manual_45.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c3973b61b50a1f4f44b29ae684d9a3111d321063bf485b115774b30aa88fc278
|
3 |
+
size 745488175
|
data/manual/HFCF_Manual_46.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d687e2cf8afc3d9b61febbcf5e10fc611dc1c31208d69a9781eee32510d8e7c
|
3 |
+
size 750671579
|
data/manual/HFCF_Manual_47.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:74082b329ec78d57c8d943ae9160577b09efe71b6ccfcd7fb8c0c4d0bbdcc707
|
3 |
+
size 748550083
|
data/manual/HFCF_Manual_48.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ac9b5e86ec7f9b494d3dc1eaca76606e9d2443af70bc8c3ecd046137500da08a
|
3 |
+
size 749025038
|
data/manual/HFCF_Manual_49.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0c3d7a6f4dc39626fd9b5c23492028b9b382ce64752e3809ff7f7493cc5dd8fd
|
3 |
+
size 3774280138
|
data/manual/HFCF_Manual_5.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cce9bd74ef3696e3db076feca399efb0d30fef3199490156b5e684f77e918cf9
|
3 |
+
size 1195976769
|
data/manual/HFCF_Manual_50.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb16d99e08376f1b60f69ba96c6906b0807fc09a49596eb9901793ffe1b0f3c6
|
3 |
+
size 12507930653
|