-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
133 lines (110 loc) · 4.87 KB
/
Copy pathpublications.html
File metadata and controls
133 lines (110 loc) · 4.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marco Dalla Pria — Publications</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<div class="sidebar">
<h1 class="name">Marco<br>Dalla Pria</h1>
<p class="subtitle">
PhD in Modeling and Data Science<br>
<a href="https://www.esomas-en.unito.it/do/home.pl" target="_blank">ESOMAS</a>, University of Turin (IT)<br>
</p>
<img class="profile" src="https://github.com/marcodallapria.png">
<nav class="menu">
<a href="index.html">About</a>
<a href="publications.html" class="active">Publications</a>
<a href="activities.html">Activities</a>
</nav>
<div class="icons">
<a href="mailto:marco.dallapria@unito.it" class="icon" title="Email">
<i class="fa-solid fa-envelope"></i>
</a>
<a href="https://github.com/marcodallapria" class="icon" title="GitHub" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</div>
<footer>
Last updated: <span id="last-updated"></span>
</footer>
</div>
<div class="content">
<section>
<h2>Publications</h2>
<p>
• Dalla Pria, M., Ruggiero, M., Spanò, D.,
“Exact inference via quasi-conjugacy in two-parameter Poisson–Dirichlet hidden Markov models”.
<a href="https://www.tandfonline.com/doi/full/10.1080/01621459.2026.2676717" target="_blank"><em>JASA</em></a>,
2026.
</p>
<p>
• Dalla Pria, M.,
<a href="https://iris.unito.it/bitstream/2318/2138158/2/Tesi-Dalla%20Pria-Marco.pdf" target="_blank">“On Exchangeable Partition Ensembles”</a>.
PhD thesis, University of Turin, 2026.
</p>
<p>
• Dalla Pria, M.,
<a href="https://www.matteoruggiero.it/" target="_blank">Ruggiero, M.</a>,
<a href="https://warwick.ac.uk/fac/sci/statistics/staff/academic-research/spano/" target="_blank">Spanò, D.</a>,
“A Metropolis-Hastings for sampling coagulated partitions”, in
<a href="https://link.springer.com/chapter/10.1007/978-3-031-99009-0_6" target="_blank">
<em>New Trends in Bayesian Statistics</em> - Collection of proceedings from BAYSM 2023 and contributions from j-ISBA members
</a>,
2026.
</p>
<p>
• <a href="https://sites.google.com/view/amongeromartina/home" target="_blank">Amongero, M.</a>,
<a href="https://sites.google.com/view/yleniafbuttigliero/home" target="_blank">Buttigliero, Y. F.</a>,
Dalla Pria, M.,
<a href="https://sites.google.com/view/augustofasano/home" target="_blank">Fasano, A.</a>,
“Contributed discussion on <em>A Tree Perspective on Stick-Breaking Models in Covariate-Dependent Mixtures by Horiguchi, Chan, and Ma</em>”, in
<a href="https://dx.doi.org/10.1214/24-BA1462" target="_blank"><em>Bayesian Analysis</em></a>,
2025.
</p>
<p>
• Dalla Pria, M.,
<a href="https://www.matteoruggiero.it/" target="_blank">Ruggiero, M.</a>,
<a href="https://warwick.ac.uk/fac/sci/statistics/staff/academic-research/spano/" target="_blank">Spanò, D.</a>,
“Exact sampling of two coagulated partitions”, in
<a href="https://link.springer.com/chapter/10.1007/978-3-031-64431-3_83" target="_blank">
<em>Methodological and Applied Statistics and Demography III</em> - SIS 2024, Short Papers, Plenary and Specialized Sessions
</a>.
Springer Cham, 2024, ISBN 978-3-031-64346-0.
</p>
<p>
• Dalla Pria, M. and
<a href="https://silviamontagna.netlify.app/" target="_blank">Montagna, S.</a>,
“The Hierarchical Beta-Bernoulli Process as Out-of-Scope Query Detector”, in
<a href="https://it.pearson.com/content/dam/region-core/italy/pearson-italy/pdf/Docenti/Universit%C3%A0/bozza-book-compresso.pdf" target="_blank">
<em>Book of Short Papers, SIS 2023 - Statistical Learning, Sustainability and Impact Evaluation</em>
</a>.
Pearson, 2023, ISBN 9788891935618AAVV, 560-565.
</p>
</section>
<section>
<h2>In Preparation</h2>
<p>
• Dalla Pria, M., Ruggiero, M., Spanò, D.,
“Exchangeable Partition Ensembles”.
</p>
<p>
• Dalla Pria, M., Ruggiero, M., Spanò, D.,
“Generalised Bayesian Consensus Clustering”.
</p>
</section>
</div>
<script>
const lastModified = new Date(document.lastModified);
const formattedDate = lastModified.toLocaleDateString("en-US", {
year: "numeric",
month: "long",
day: "numeric"
});
document.getElementById("last-updated").textContent = formattedDate;
</script>
</body>
</html>