-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDESCRIPTION
27 lines (27 loc) · 1.09 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
Package: cld2
Type: Package
Title: Google's Compact Language Detector 2
Version: 1.2.5
Authors@R: c(
person("Jeroen", "Ooms", ,"jeroenooms@gmail.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-4035-0289")),
person("Dirk Sites", role = "cph", comment = "Author of CLD2 C++ library"))
Description: Bindings to Google's C++ library Compact Language Detector 2
(see <https://github.com/cld2owners/cld2#readme> for more information). Probabilistically
detects over 80 languages in plain text or HTML. For mixed-language input it returns the
top three detected languages and their approximate proportion of the total classified
text bytes (e.g. 80% English and 20% French out of 1000 bytes). There is also a 'cld3'
package on CRAN which uses a neural network model instead.
License: Apache License 2.0
Encoding: UTF-8
URL: https://docs.ropensci.org/cld2/
https://ropensci.r-universe.dev/cld2
BugReports: https://github.com/ropensci/cld2/issues
Imports: Rcpp
LinkingTo: Rcpp
RoxygenNote: 6.0.1
Roxygen: list(markdown = TRUE)
Suggests:
testthat,
readtext,
cld3