Instructions to use jrc-ai/PreDA-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jrc-ai/PreDA-small with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("jrc-ai/PreDA-small") model = AutoModelForSeq2SeqLM.from_pretrained("jrc-ai/PreDA-small", device_map="auto") - Notebooks
- Google Colab
- Kaggle
citation update
Browse files
README.md
CHANGED
|
@@ -149,5 +149,27 @@ for decode_dream in output:
|
|
| 149 |
Upon evaluation we identified no dual-use implication for the present model. The model parameters, including the weights are available under CC0 1.0 Public Domain Dedication.
|
| 150 |
|
| 151 |
# Cite
|
| 152 |
-
|
| 153 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
Upon evaluation we identified no dual-use implication for the present model. The model parameters, including the weights are available under CC0 1.0 Public Domain Dedication.
|
| 150 |
|
| 151 |
# Cite
|
| 152 |
+
If you use our models in your research, please cite us as:
|
| 153 |
+
```bibtex
|
| 154 |
+
@InProceedings{10.1007/978-3-032-21477-5_13,
|
| 155 |
+
author="Bertolini, Lorenzo
|
| 156 |
+
and Comte, Valentin
|
| 157 |
+
and Ceresa, Mario
|
| 158 |
+
and Consoli, Sergio",
|
| 159 |
+
editor="Nicosia, Giuseppe
|
| 160 |
+
and Ojha, Varun
|
| 161 |
+
and Giesselbach, Sven
|
| 162 |
+
and Pardalos, M. Panos
|
| 163 |
+
and Umeton, Renato
|
| 164 |
+
and Emanuele, La Malfa
|
| 165 |
+
and Gabriele, La Malfa",
|
| 166 |
+
title="PreDA: Prefix-Based Dream Reports Annotation with Generative Language Models",
|
| 167 |
+
booktitle="Machine Learning, Optimization, and Data Science",
|
| 168 |
+
year="2026",
|
| 169 |
+
publisher="Springer Nature Switzerland",
|
| 170 |
+
address="Cham",
|
| 171 |
+
pages="191--206",
|
| 172 |
+
abstract="Dream reports are recollections of our experiences while asleep, and have strong research and clinical value. Since their analysis can be extremely time-consuming, researchers have adopted multiple types of automatised approaches, including, in more recent years, pre-trained language models (PLMs). However, most work has focused on limited aspects of the report content, such as characters or emotions. In this work, we introduce PreDA (prefix-based dream reports annotation), a framework to build language models able to annotate a dream report for multiple relevant aspects, using generative PLMs. We provide experimental evidence showing how a single PLM of small dimension can efficiently annotate a report on multiple features of the Hall and Van De Castle (HVDC) framework, give a detailed analysis of the model's performance, and explain how the training data impact learning and generalisation ability of the model.",
|
| 173 |
+
isbn="978-3-032-21477-5"
|
| 174 |
+
}
|
| 175 |
+
```
|