diff --git a/resources/artifact-parameter-dataset.md b/resources/artifact-parameter-dataset.md
new file mode 100644
index 0000000000000000000000000000000000000000..da877745d0adc63f475ea3c1bff40e56fdfecd01
--- /dev/null
+++ b/resources/artifact-parameter-dataset.md
@@ -0,0 +1,130 @@
+---
+layout: page
+title: artifpar - a data set for research artifact parameters
+---
+
+### Release
+
+* This page documents: artifpar 2022-1 (latest)
+
+### Contents
+
+* `annotated_text_segments.json`  
+  131 text segments with entity and relation annotations in the [W3C Web Annotation Data Model](https://www.w3.org/TR/annotation-model/)
+* `annotated_text_segments-semeval2022_task12_format.json`  
+  same as above, in the data format of the [SemEval-2022](https://semeval.github.io/SemEval2022/tasks.html) [Task 12: Symlink](https://competitions.codalab.org/competitions/34011)
+* `doc/`  
+  * documentation of the sampling and pre-filtering performed prior to the annotation
+  * the annotation guidelines used
+
+### Download
+
+* [Download link](https://gl.kwarc.info/SIGMathLing/artifact-parameter-dataset) ([SIGMathLing members](/member/) only)
+
+### Description
+
+This is the first release of the (work-in-progress) artifpar dataset.
+
+It contains text segments from parsed arXiv papers with annotated entities and their relations. Specifically, the annotations comprise (1) research artifacts, (2) parameters of those artifacts, and (3) values of those parameters. Annotations are provided in three formats:
+* the W3C Web Annotation Data Model
+* the SemEval-2022 task 12 format
+* a custom format (see [Appendix](#appendix))
+
+The data set in its current form is the result of a first attempt at defining and studying a new information extraction task. Goal of the task is to shed light on how authors of academic literature describe their usage of research artifacts, and to develop information extraction models.
+
+To define the scope of the task, we propose the following definitions.
+
+* (1) A **research artifact** is a procedure or piece of data used by researchers.
+* (2) A **parameter** is a variable aspect of the artifact.
+* (3) A **value** is the description of the state of aforementioned aspect at the time of usage.
+
+With annotation guidelines based on above definitions, we heuristically pre-filtered arXiv papers and annotated 151 text segments. Basic statistics on the resulting data set are shown below.
+
+**Statistics**
+
+* 151 annotated text segments (131 unique), annotated by two annotators
+* 1,345 annotated entities
+* 1,110 annotated relations
+* inter annotator agreement (based on 20 text segments annotated by both annotators)
+    * entities
+        * Cohen’s kappa based on character level entity type: 0.867
+        * exact match of entity spans: 105/133 (0.789)
+    * entities + relations
+        * Cohen’s kappa based on character level relation target span : 0.737
+        * exact match of relations and their exact entity spans: 88/132 (0.667)
+
+**Future considerations**
+
+Based on the lessons learned during creation, analysis of, and early feedback for the data set, we have the following considerations for future versions.
+
+* relation annotation
+    * relations should be annotated on an entity level rather than a surface form level
+    * for each entity a list of surface forms (i.e. co-references) is then given
+* additional entity type “context”
+    * as an improved way to deal with the variety of values (numbers, sets, ranges, textual descriptions of dynamic processes, etc.) a new entity type “context” could be introduced
+    * example: *“initially we set λ to 0.01, ...”* → value: 0.01, value’s context: initially
+* prevention of recall limitation
+    * recall values of models evaluated on the data set *in its current from* are only informative to a certain degree, because no text segments without annotations are provided
+    * to resolve this, text segments should not be heuristically pre-filtered, but rather taken from whole papers—i.e., a paper is split into paragraphs and *all* paragraphs are annotated
+
+
+### Citing this Resource
+
+#### BibTeX
+
+```
+{% raw %}@misc{SML:artifpar:2022-1,
+  author       = {Saier, Tarek and Asakura, Takuto and F{\"{a}}rber, Michael},
+  title        = {{artifpar - a data set for research artifact parameters}},
+  url          = {https://sigmathling.kwarc.info/resources/artifact-parameter-dataset/},
+  note         = {SIGMathLing -- Special Interest Group on Math Linguistics},
+  year         = {2022},
+}{% endraw %}
+```
+<!-- use raw environment above to make the use of double curly braces possible -->
+
+### Accessibility and License
+
+The content of this dataset is licensed to [SIGMathLing members](/member/) for research and tool development purposes.
+
+Access is restricted to  [SIGMathLing members](/member/) under the [SIGMathLing Non-Disclosure-Agreement](/nda/) as for most [arXiv](http://arxiv.org) articles, the right of distribution was only given (or assumed) to arXiv itself.
+
+### Generated from
+
+* [unarXive](https://github.com/IllDepence/unarXive) (paper pre-selection for annotation based on [papers with code](https://github.com/paperswithcode/paperswithcode-data))
+
+### About
+
+Part of the [&#91;KOM,BI&#93;](https://softwarecampus.de/projekt/kombi) project, with support from [KHYS](https://www.khys.kit.edu/).
+
+### Appendix
+
+**Data format example:**
+
+```json
+{
+ "context":      "We use the Adam optimizer with a fixed learning rate of \\(10^{-5}\\).",
+ "in_doc":       "2012.01573",
+ "annotator_id": "tsa",
+ "annotation":   {"entity_dict": {"A1": {"entity_group": "a_g1",
+                                         "offset": [11, 15],
+                                         "surface_text": "Adam",
+                                         "type": "a"},
+                                  "P1": {"entity_group": "p_g1",
+                                         "offset": [39, 52],
+                                         "surface_text": "learning rate",
+                                         "type": "p"},
+                                  "V1": {"entity_group": "v_g1",
+                                         "offset": [58, 65],
+                                         "surface_text": "10^{-5}",
+                                         "type": "v"}},
+                  "relation_tuples": [["V1", "P1"],
+                                      ["P1", "A1"]]
+                  },
+ "annotation_w3c_data_model": [{"@context": "http://www.w3.org/ns/anno.jsonld",
+                                "type":     "Annotation"
+                                ...
+                              }],
+                              ...
+}
+```
diff --git a/resources/index.md b/resources/index.md
index 205c01acad38207ee5371920470d68bffcb00290..31d9a318b207b7f5e8e5514fed37b812677df64e 100644
--- a/resources/index.md
+++ b/resources/index.md
@@ -17,6 +17,7 @@ title: SIGMathLing - Datasets and Resources
 
 ## Work-In-Progress Resources hosted on the SIGMathLing Repository
  1. [Dataset for Grounding of Formulae](/resources/grounding-dataset)
+ 1. [Artifact Parameter Dataset](/resources/artifact-parameter-dataset)
 
 ## Resources hosted externally
  1.  [ACL-math-annotation](http://www-al.nii.ac.jp/acl-math-annotation/)