Datasets:

Modalities:
Text
Formats:
webdataset
Size:
< 1K
ArXiv:
Libraries:
Datasets
WebDataset
wenxiwang commited on
Commit
5fcba65
·
1 Parent(s): f467c2b

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -27
README.md CHANGED
@@ -1,12 +1,34 @@
1
  # DataBack: Dataset of SAT Formulas and Backbone Variable Phases
2
 
3
  ## What is DataBack
4
- `DataBack` is a dataset that consists of SAT formulas in CNF format, each labeled with the phases of its backbone variables. Within `DataBack`, there are two distinct subsets: the pre-training set, named `DataBack-PT`, and the fine-tuning set, named `DataBack-FT`. The state-of-the-art backbone extractor called [`CadiBack`](https://wenxiwang.github.io/papers/cadiback.pdf) has been employed to obtain the backbone variable phases. We have allocated a timeout of 1,000 seconds for the pre-training formulas and 5,000 seconds for the fine-tuning ones due to the increased complexity of the fine-tuning formulas.
 
5
 
6
- The `DataBack` dataset has been employed to both pre-train and fine-tune our `NeuroBack` model, which has demonstrated significant improvements in SAT solving efficiency. For an in-depth exploration of `DataBack`, please refer to our [`NeuroBack`](https://arxiv.org/pdf/2110.14053.pdf) or [`CadiBack`](https://wenxiwang.github.io/papers/cadiback.pdf) papers.
7
 
8
- ## Contributors
9
- Wenxi Wang ([email protected]), Yang Hu ([email protected])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
  ## References
12
  If you use `DataBack` in your research, please kindly cite the following papers.
@@ -36,26 +58,5 @@ If you use `DataBack` in your research, please kindly cite the following papers.
36
  organization={Schloss Dagstuhl-Leibniz-Zentrum f{\"u}r Informatik}
37
  }
38
  ```
39
-
40
- ## Directory Structure
41
- ```
42
- |- original # Original SAT formulas and their backbone variable phases
43
- | |- cnf_pt.tar.gz # SAT formulas (in CNF format) for model pre-training
44
- | |- bb_pt.tar.gz # Backbone phases for pre-training formulas
45
- | |- cnf_ft.tar.gz # SAT formulas (in CNF format) for model fine-tuning
46
- | |- bb_ft.tar.gz # Backbone phases for fine-tuning formulas
47
- |
48
- |- dual # Dual SAT formulas and their backbone variable phases
49
- | |- dual_cnf_pt.tar.gz # Dual SAT formulas (in CNF format) for model pre-training
50
- | |- dual_bb_pt.tar.gz # Backbone phases for dual pre-training CNFs
51
- | |- dual_cnf_ft.tar.gz # Dual SAT formulas (in CNF format) for model fine-tuning
52
- | |- dual_bb_ft.tar.gz # Backbone phases for dual fine-tuning CNFs
53
- ```
54
-
55
- ## File Naming Convention
56
- In the original directory, each CNF tar file (`cnf_*.tar.gz`) contains compressed CNF files named: `[cnf_name].[compression_format]`, where `[compression_format]` could be bz2, lzma, xz, gz, etc. Correspondingly, each backbone tar file (`bb_*.tar.gz`) comprises compressed backbone files named: `[cnf_name].backbone.xz`. It is important to note that a compressed CNF file will always share its `[cnf_name]` with its associated compressed backbone file.
57
-
58
- In the dual directory, the naming convention remains consistent, but with an added `dual_` prefix for each CNF tar file or backbone tar file, and an `d_` prefix for each compressed CNF or backbone file to indicate that it pertains to a dual SAT formula.
59
-
60
- ## Format of the Extracted Backbone File
61
- The extracted backbone file (`*.backbone`) adheres to the output format of [`CadiBack`](https://wenxiwang.github.io/papers/cadiback.pdf). Specifically, each line contains the letter 'b' followed by an integer. This integer represents the backbone variable ID and its associated phase.
 
1
  # DataBack: Dataset of SAT Formulas and Backbone Variable Phases
2
 
3
  ## What is DataBack
4
+ `DataBack` is a dataset that consists of 120,286 SAT formulas (in CNF format), each labeled with the phases of its backbone variables.
5
+ `DataBack` contains two distinct subsets: the pre-training set, named `DataBack-PT`, and the fine-tuning set, named `DataBack-FT`, for pre-training and fine-tuning our `NeuroBack` model, respectively. To learn more about `NeuroBack` and `DataBack`, please refer to our [`NeuroBack paper`](https://arxiv.org/pdf/2110.14053.pdf).
6
 
7
+ The state-of-the-art backbone extractor, [`CadiBack`](https://github.com/arminbiere/cadiback), has been employed to extract the backbone variable phases. To learn more about `CadiBack`, please refer to the [`CadiBack paper`](https://wenxiwang.github.io/papers/cadiback.pdf).
8
 
9
+
10
+ ## Directory Structure
11
+ ```
12
+ |- original # Original CNF formulas and their backbone variable phases
13
+ | |- cnf_pt.tar.gz # CNF formulas for pre-training
14
+ | |- bb_pt.tar.gz # Backbone phases for pre-training formulas
15
+ | |- cnf_ft.tar.gz # CNF formulas for fine-tuning
16
+ | |- bb_ft.tar.gz # Backbone phases for fine-tuning formulas
17
+ |
18
+ |- dual # Dual CNF formulas and their backbone variable phases
19
+ | |- dual_cnf_pt.tar.gz # Dual CNF formulas for pre-training
20
+ | |- dual_bb_pt.tar.gz # Backbone phases for dual pre-training formulas
21
+ | |- dual_cnf_ft.tar.gz # Dual CNF formulas for fine-tuning
22
+ | |- dual_bb_ft.tar.gz # Backbone phases for dual fine-tuning formulas
23
+ ```
24
+
25
+ ## File Naming Convention
26
+ In the original directory, each CNF tar file (`cnf_*.tar.gz`) contains compressed CNF files named: `[cnf_name].[compression_format]`, where `[compression_format]` could be bz2, lzma, xz, gz, etc. Correspondingly, each backbone tar file (`bb_*.tar.gz`) comprises compressed backbone files named: `[cnf_name].backbone.xz`. It is important to note that a compressed CNF file will always share its `[cnf_name]` with its associated compressed backbone file.
27
+
28
+ In the dual directory, the naming convention remains consistent, but with an added `dual_` prefix for each CNF tar file or backbone tar file, and an `d_` prefix for each compressed CNF or backbone file to indicate that it pertains to a dual CNF formula.
29
+
30
+ ## Format of the Extracted Backbone File
31
+ The extracted backbone file (`*.backbone`) adheres to the output format of [`CadiBack`](https://github.com/arminbiere/cadiback).
32
 
33
  ## References
34
  If you use `DataBack` in your research, please kindly cite the following papers.
 
58
  organization={Schloss Dagstuhl-Leibniz-Zentrum f{\"u}r Informatik}
59
  }
60
  ```
61
+ ## Contributors
62
+ Wenxi Wang ([email protected]), Yang Hu ([email protected])