Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,19 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: image
|
|
@@ -33,3 +48,57 @@ configs:
|
|
| 33 |
- split: test
|
| 34 |
path: data/test-*
|
| 35 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-to-image
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
pretty_name: CellOPC
|
| 8 |
+
size_categories:
|
| 9 |
+
- 100K<n<1M
|
| 10 |
+
tags:
|
| 11 |
+
- optical-proximity-correction
|
| 12 |
+
- inverse-lithography
|
| 13 |
+
- mask-optimization
|
| 14 |
+
- vlsi
|
| 15 |
+
- eda
|
| 16 |
+
- lithography
|
| 17 |
dataset_info:
|
| 18 |
features:
|
| 19 |
- name: image
|
|
|
|
| 48 |
- split: test
|
| 49 |
path: data/test-*
|
| 50 |
---
|
| 51 |
+
|
| 52 |
+
# CellOPC
|
| 53 |
+
|
| 54 |
+
CellOPC is a large-scale benchmark dataset for cell- and context-aware mask optimization. It is designed to support deep learning research for optical proximity correction (OPC) and inverse lithography technique (ILT) mask generation.
|
| 55 |
+
|
| 56 |
+
## Dataset Description
|
| 57 |
+
|
| 58 |
+
CellOPC is constructed from real integrated circuit layouts at the 45 nm technology node. Each sample is clipped around a standard-cell placement instance to preserve cell-level hierarchy and surrounding layout context. The dataset provides paired input layout/target images and optimized mask images for learning cell-wise mask generation under different context sizes.
|
| 59 |
+
|
| 60 |
+
The dataset contains both model-based OPC and ILT mask types. It is intended to evaluate how standard-cell identity, neighboring geometries, and input context size affect mask prediction and lithography-aware printability.
|
| 61 |
+
|
| 62 |
+
## Dataset Structure
|
| 63 |
+
|
| 64 |
+
Each sample contains the following fields:
|
| 65 |
+
|
| 66 |
+
- `conditioning_image`: input target/layout image.
|
| 67 |
+
- `image`: ground-truth optimized mask image.
|
| 68 |
+
- `mask_type`: mask generation type, such as `opc` or `ilt`.
|
| 69 |
+
- `context`: context size used when clipping the input layout.
|
| 70 |
+
- `source_dataset`: source subset name, such as `cellopc_opc_16`.
|
| 71 |
+
|
| 72 |
+
The dataset contains three splits:
|
| 73 |
+
|
| 74 |
+
| Split | Number of Examples |
|
| 75 |
+
|---|---:|
|
| 76 |
+
| train | 451,912 |
|
| 77 |
+
| validation | 112,974 |
|
| 78 |
+
| test | 80 |
|
| 79 |
+
|
| 80 |
+
## Intended Use
|
| 81 |
+
|
| 82 |
+
CellOPC is intended for:
|
| 83 |
+
|
| 84 |
+
- training image-to-image mask generation models;
|
| 85 |
+
- benchmarking deep learning methods for OPC and ILT;
|
| 86 |
+
- studying the impact of context size on mask prediction;
|
| 87 |
+
- evaluating cell-aware and context-aware mask optimization.
|
| 88 |
+
|
| 89 |
+
## Loading the Dataset
|
| 90 |
+
|
| 91 |
+
```python
|
| 92 |
+
from datasets import load_dataset
|
| 93 |
+
|
| 94 |
+
dataset = load_dataset("ChristyHu/CellOPC")
|
| 95 |
+
|
| 96 |
+
train_set = dataset["train"]
|
| 97 |
+
val_set = dataset["validation"]
|
| 98 |
+
test_set = dataset["test"]
|
| 99 |
+
|
| 100 |
+
sample = train_set[0]
|
| 101 |
+
layout = sample["conditioning_image"]
|
| 102 |
+
mask = sample["image"]
|
| 103 |
+
mask_type = sample["mask_type"]
|
| 104 |
+
context = sample["context"]
|