-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
72 lines (72 loc) · 2.03 KB
/
DESCRIPTION
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
Package: exchanger
Type: Package
Title: Bayesian Entity Resolution with Exchangeable Random Partition Priors
Version: 0.3.0
Date: 2023-01-25
Authors@R: c(
person(given = "Neil",
family = "Marchant",
email = "[email protected]",
role = c("aut", "cre")),
person(given = "Rebecca",
family = "Steorts",
email = "[email protected]",
role = c("aut", "ths")),
person(given = "Benjamin",
family = "Rubinstein",
email = "[email protected]",
role = c("aut", "ths")))
Maintainer: Neil Marchant <[email protected]>
Description: Implements a Bayesian model for entity resolution as described
in Marchant et al. (2023). The model assumes records are generated from
a latent population of entities via a distortion process. The records are
assumed to be (infinitely) exchangeable, and several priors on the
linkage/clustering structure compatible with this assumption are
implemented. The model is fitted using a Markov chain Monte Carlo
algorithm.
License: GPL (>= 2)
Depends: R (>= 3.0.2)
Imports: Rcpp (>= 0.12.12),
coda (>= 0.17-1),
future.apply (>= 1.0.0),
comparator (>= 0.1.1),
methods,
mcmcse (>= 1.4)
LinkingTo: Rcpp,
RcppArmadillo,
RcppProgress,
BH (>= 1.69.0)
LazyData: true
RoxygenNote: 7.2.3
Roxygen: list(markdown = TRUE)
Encoding: UTF-8
BugReports: https://github.com/cleanzr/exchanger/issues
URL: https://github.com/cleanzr/exchanger
Suggests: knitr,
rmarkdown,
clevr (>= 0.1.1)
VignetteBuilder: knitr
Collate:
'RV.R'
'GammaRV.R'
'DirichletProcess.R'
'utils.R'
'BetaRV.R'
'Attribute.R'
'AttributeIndex.R'
'DirichletRV.R'
'RP.R'
'ExchangERModel.R'
'ExchangERFit.R'
'sample_ep.R'
'GeneralizedCouponRP.R'
'PitmanYorRP.R'
'RcppExports.R'
'ShiftedNegBinomRV.R'
'analysis.R'
'coreference_probs.R'
'data.R'
'exchanger-package.R'
'extract.R'
'run_inference.R'
'transform_dist_fn.R'