rafaelpadilla commited on
Commit
50493ed
·
verified ·
1 Parent(s): d15f76f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +123 -82
README.md CHANGED
@@ -1,83 +1,124 @@
1
- [![CC BY 4.0][cc-by-shield]][cc-by]
2
- [![Versioning][semver-shield]][semver]
3
-
4
- [cc-by]: http://creativecommons.org/licenses/by/4.0/
5
- [cc-by-shield]: https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg
6
- [semver]: https://semver.org
7
- [semver-shield]: https://img.shields.io/badge/semver-2.0.0-blue
8
-
9
- # Table of Content
10
-
11
- * [Introduction](#introduction)
12
- * [Release Notes](#release-notes)
13
- * [1.0.0](#100)
14
- * [1.1.0](#110)
15
- * [1.1.1](#111)
16
- * [2.0.0](#200)
17
-
18
- # Introduction
19
-
20
- All 3W Dataset data files (files in the subdirectories of the [dataset](dataset) directory) are licensed under the [Creative Commons Attribution 4.0 International License][cc-by].
21
-
22
- # Release Notes
23
-
24
- Each subsection below contains release notes for a specific 3W Dataset version. Differences from the immediately previous version are highlighted.
25
-
26
- ## 1.0.0
27
-
28
- Release: July 1, 2019.
29
-
30
- This was the first published version, which is fully described in [this](https://doi.org/10.1016/j.petrol.2019.106223) paper.
31
-
32
- ## 1.1.0
33
-
34
- Release: December 30, 2022.
35
-
36
- Highlights:
37
-
38
- 1. New instances were added as follows:
39
- * 1 instance of event type 7.
40
- 1. Instances were removed due to issues identified as follows:
41
- * 3 instances of event type 0;
42
- * 1 instance of event type 5;
43
- * 3 instances of event type 8, when compared to what is described in the paper **A realistic and public dataset with rare undesirable real events in oil wells** published in the **Journal of Petroleum Science and Engineering** (link [here](https://doi.org/10.1016/j.petrol.2019.106223)).
44
- 1. Normal periods of certain instances with anomalies were increased as possible. We tried to have instances with minimum normal periods of 1 hour;
45
- 1. Names of certain files with instances have changed due to increased normal periods;
46
- 1. Labels in some real instances were adjusted by experts;
47
- 1. All values of some variables in some real instances were corrected due to corrections in historian systems' tag configurations;
48
- 1. Certain variable values ​​have undergone minimal change due to different rounding;
49
- 1. The 3W Dataset's main configuration file ([dataset.ini](dataset.ini)) was updated.
50
-
51
- ## 1.1.1
52
-
53
- Release: April 09, 2023.
54
-
55
- Highlights:
56
-
57
- 1. Issue #60 was resolved;
58
- 1. Issue #65 was resolved;
59
- 1. Certain variable values ​​have undergone minimal change due to different rounding;
60
- 1. The 3W Dataset's main configuration file ([dataset.ini](dataset.ini)) was updated.
61
-
62
- ## 2.0.0
63
-
64
- Release: July 25, 2024.
65
-
66
- Highlights:
67
-
68
- 1. All instances are now saved in Parquet files (created with the `pyarrow` engine and `brotli` compression);
69
- 1. Reduction in disk space occupied by the 3W Dataset of 3.15 GB (from 4.89 GB to 1.74 GB);
70
- 1. Real and simulated instances of type 9 were added;
71
- 1. Several instances of types 0, 3, 4, 5, 6 and 8 were added;
72
- 1. Another 24 real wells were covered with new real instances (now 42 real wells are covered);
73
- 1. Some real instances, mainly of type 1, were removed;
74
- 1. 1 variable was removed (`T-JUS-CKGL`);
75
- 1. Another 20 variables were added (there are now 27 variables);
76
- 1. Another label referring to well operational status was added;
77
- 1. Normal periods in several real instances with unwanted events were extended;
78
- 1. All labeling gaps in real instances were eliminated (all observations were labeled);
79
- 1. Conversions between measurement units in several instances were corrected;
80
- 1. Labels in several real instances were adjusted by experts;
81
- 1. All values of some variables in some real instances were corrected due to corrections in historian systems' tag configurations;
82
- 1. Certain variable values ​​have undergone minimal change due to different rounding;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  1. The 3W Dataset's main configuration file ([dataset.ini](dataset.ini)) was updated.
 
1
+ ---
2
+ configs:
3
+ - config_name: default
4
+ data_files:
5
+ - split: simulated
6
+ path:
7
+ - "0/SIMULATED_*.parquet"
8
+ - "1/SIMULATED_*.parquet"
9
+ - "2/SIMULATED_*.parquet"
10
+ - "3/SIMULATED_*.parquet"
11
+ - "4/SIMULATED_*.parquet"
12
+ - "5/SIMULATED_*.parquet"
13
+ - "6/SIMULATED_*.parquet"
14
+ - "7/SIMULATED_*.parquet"
15
+ - "8/SIMULATED_*.parquet"
16
+ - "9/SIMULATED_*.parquet"
17
+ - split: drawn
18
+ path:
19
+ - "0/DRAWN_*.parquet"
20
+ - "1/DRAWN_*.parquet"
21
+ - "2/DRAWN_*.parquet"
22
+ - "3/DRAWN_*.parquet"
23
+ - "4/DRAWN_*.parquet"
24
+ - "5/DRAWN_*.parquet"
25
+ - "6/DRAWN_*.parquet"
26
+ - "7/DRAWN_*.parquet"
27
+ - "8/DRAWN_*.parquet"
28
+ - "9/DRAWN_*.parquet"
29
+ - split: well
30
+ path:
31
+ - "0/WELL-*.parquet"
32
+ - "1/WELL-*.parquet"
33
+ - "2/WELL-*.parquet"
34
+ - "3/WELL-*.parquet"
35
+ - "4/WELL-*.parquet"
36
+ - "5/WELL-*.parquet"
37
+ - "6/WELL-*.parquet"
38
+ - "7/WELL-*.parquet"
39
+ - "8/WELL-*.parquet"
40
+ - "9/WELL-*.parquet"
41
+ ---
42
+ [![CC BY 4.0][cc-by-shield]][cc-by]
43
+ [![Versioning][semver-shield]][semver]
44
+
45
+ [cc-by]: http://creativecommons.org/licenses/by/4.0/
46
+ [cc-by-shield]: https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg
47
+ [semver]: https://semver.org
48
+ [semver-shield]: https://img.shields.io/badge/semver-2.0.0-blue
49
+
50
+ # Table of Content
51
+
52
+ * [Introduction](#introduction)
53
+ * [Release Notes](#release-notes)
54
+ * [1.0.0](#100)
55
+ * [1.1.0](#110)
56
+ * [1.1.1](#111)
57
+ * [2.0.0](#200)
58
+
59
+ # Introduction
60
+
61
+ All 3W Dataset data files (files in the subdirectories of the [dataset](dataset) directory) are licensed under the [Creative Commons Attribution 4.0 International License][cc-by].
62
+
63
+ # Release Notes
64
+
65
+ Each subsection below contains release notes for a specific 3W Dataset version. Differences from the immediately previous version are highlighted.
66
+
67
+ ## 1.0.0
68
+
69
+ Release: July 1, 2019.
70
+
71
+ This was the first published version, which is fully described in [this](https://doi.org/10.1016/j.petrol.2019.106223) paper.
72
+
73
+ ## 1.1.0
74
+
75
+ Release: December 30, 2022.
76
+
77
+ Highlights:
78
+
79
+ 1. New instances were added as follows:
80
+ * 1 instance of event type 7.
81
+ 1. Instances were removed due to issues identified as follows:
82
+ * 3 instances of event type 0;
83
+ * 1 instance of event type 5;
84
+ * 3 instances of event type 8, when compared to what is described in the paper **A realistic and public dataset with rare undesirable real events in oil wells** published in the **Journal of Petroleum Science and Engineering** (link [here](https://doi.org/10.1016/j.petrol.2019.106223)).
85
+ 1. Normal periods of certain instances with anomalies were increased as possible. We tried to have instances with minimum normal periods of 1 hour;
86
+ 1. Names of certain files with instances have changed due to increased normal periods;
87
+ 1. Labels in some real instances were adjusted by experts;
88
+ 1. All values of some variables in some real instances were corrected due to corrections in historian systems' tag configurations;
89
+ 1. Certain variable values ​​have undergone minimal change due to different rounding;
90
+ 1. The 3W Dataset's main configuration file ([dataset.ini](dataset.ini)) was updated.
91
+
92
+ ## 1.1.1
93
+
94
+ Release: April 09, 2023.
95
+
96
+ Highlights:
97
+
98
+ 1. Issue #60 was resolved;
99
+ 1. Issue #65 was resolved;
100
+ 1. Certain variable values ​​have undergone minimal change due to different rounding;
101
+ 1. The 3W Dataset's main configuration file ([dataset.ini](dataset.ini)) was updated.
102
+
103
+ ## 2.0.0
104
+
105
+ Release: July 25, 2024.
106
+
107
+ Highlights:
108
+
109
+ 1. All instances are now saved in Parquet files (created with the `pyarrow` engine and `brotli` compression);
110
+ 1. Reduction in disk space occupied by the 3W Dataset of 3.15 GB (from 4.89 GB to 1.74 GB);
111
+ 1. Real and simulated instances of type 9 were added;
112
+ 1. Several instances of types 0, 3, 4, 5, 6 and 8 were added;
113
+ 1. Another 24 real wells were covered with new real instances (now 42 real wells are covered);
114
+ 1. Some real instances, mainly of type 1, were removed;
115
+ 1. 1 variable was removed (`T-JUS-CKGL`);
116
+ 1. Another 20 variables were added (there are now 27 variables);
117
+ 1. Another label referring to well operational status was added;
118
+ 1. Normal periods in several real instances with unwanted events were extended;
119
+ 1. All labeling gaps in real instances were eliminated (all observations were labeled);
120
+ 1. Conversions between measurement units in several instances were corrected;
121
+ 1. Labels in several real instances were adjusted by experts;
122
+ 1. All values of some variables in some real instances were corrected due to corrections in historian systems' tag configurations;
123
+ 1. Certain variable values ​​have undergone minimal change due to different rounding;
124
  1. The 3W Dataset's main configuration file ([dataset.ini](dataset.ini)) was updated.