CRAN Package Check Results for Package text2vec

Last updated on 2019-11-26 00:52:15 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.5.1 111.71 153.19 264.90 WARN
r-devel-linux-x86_64-debian-gcc 0.5.1 85.48 116.83 202.31 WARN
r-devel-linux-x86_64-fedora-clang 0.5.1 341.33 WARN
r-devel-linux-x86_64-fedora-gcc 0.5.1 329.75 WARN
r-devel-windows-ix86+x86_64 0.5.1 288.00 271.00 559.00 ERROR
r-devel-windows-ix86+x86_64-gcc8 0.5.1 288.00 261.00 549.00 ERROR
r-patched-linux-x86_64 0.5.1 95.25 724.52 819.77 ERROR
r-patched-solaris-x86 0.5.1 1028.70 NOTE
r-release-linux-x86_64 0.5.1 91.74 723.81 815.55 ERROR
r-release-windows-ix86+x86_64 0.5.1 270.00 277.00 547.00 ERROR
r-release-osx-x86_64 0.5.1 WARN
r-oldrel-windows-ix86+x86_64 0.5.1 182.00 328.00 510.00 NOTE
r-oldrel-osx-x86_64 0.5.1 NOTE

Check Details

Version: 0.5.1
Check: whether package can be installed
Result: WARN
    Found the following significant warnings:
     GloveFitter.cpp:80:7: warning: explicitly assigning value of variable of type 'GloveFit' to itself [-Wself-assign-overloaded]
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-fedora-clang, r-release-osx-x86_64

Version: 0.5.1
Check: for GNU extensions in Makefiles
Result: NOTE
    GNU make is a SystemRequirements.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-ix86+x86_64, r-devel-windows-ix86+x86_64-gcc8, r-patched-linux-x86_64, r-patched-solaris-x86, r-release-linux-x86_64, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64

Version: 0.5.1
Check: whether package can be installed
Result: WARN
    Found the following significant warnings:
     /home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, int>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
     /home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, float>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
Flavor: r-devel-linux-x86_64-debian-gcc

Version: 0.5.1
Check: installed package size
Result: NOTE
     installed size is 12.3Mb
     sub-directories of 1Mb or more:
     data 2.7Mb
     doc 3.6Mb
     libs 5.4Mb
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-windows-ix86+x86_64, r-devel-windows-ix86+x86_64-gcc8, r-patched-solaris-x86, r-release-windows-ix86+x86_64, r-release-osx-x86_64, r-oldrel-windows-ix86+x86_64, r-oldrel-osx-x86_64

Version: 0.5.1
Check: dependencies in R code
Result: NOTE
    Namespace in Imports field not imported from: ‘irlba’
     All declared Imports should be used.
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-solaris-x86, r-release-osx-x86_64, r-oldrel-osx-x86_64

Version: 0.5.1
Check: whether package can be installed
Result: WARN
    Found the following significant warnings:
     /data/gannet/ripley/R/test-3.7/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, int>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
     /data/gannet/ripley/R/test-3.7/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, float>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
Flavor: r-devel-linux-x86_64-fedora-gcc

Version: 0.5.1
Check: running examples for arch ‘i386’
Result: ERROR
    Running examples in 'text2vec-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: itoken
    > ### Title: Iterators (and parallel iterators) over input objects
    > ### Aliases: itoken itoken.list itoken.character itoken.iterator
    > ### itoken_parallel itoken_parallel.character
    > ### itoken_parallel.ifiles_parallel itoken_parallel.list
    >
    > ### ** Examples
    >
    > data("movie_review")
    > txt = movie_review$review[1:100]
    > ids = movie_review$id[1:100]
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10)
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10, ids = ids)
    > # Example of stemming tokenizer
    > # stem_tokenizer =function(x) {
    > # lapply(word_tokenizer(x), SnowballC::wordStem, language="en")
    > # }
    > #------------------------------------------------
    > # PARALLEL iterators
    > #------------------------------------------------
    > library(text2vec)
    >
    > N_WORKERS = 1 # change 1 to number of cores in parallel backend
    > if(require(doParallel)) registerDoParallel(N_WORKERS)
    Loading required package: doParallel
    Loading required package: foreach
    Loading required package: iterators
    Loading required package: parallel
    > data("movie_review")
    > it = itoken_parallel(movie_review$review[1:100], n_chunks = N_WORKERS)
    > system.time(dtm <- create_dtm(it, hash_vectorizer(2**16), type = 'dgTMatrix'))
     user system elapsed
     0.01 0.00 2.01
    >
    >
    >
    > cleanEx()
    
    detaching 'package:doParallel', 'package:parallel',
     'package:iterators', 'package:foreach'
    
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11763 (sockconn)
    Execution halted
Flavor: r-devel-windows-ix86+x86_64

Version: 0.5.1
Check: running examples for arch ‘x64’
Result: ERROR
    Running examples in 'text2vec-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: itoken
    > ### Title: Iterators (and parallel iterators) over input objects
    > ### Aliases: itoken itoken.list itoken.character itoken.iterator
    > ### itoken_parallel itoken_parallel.character
    > ### itoken_parallel.ifiles_parallel itoken_parallel.list
    >
    > ### ** Examples
    >
    > data("movie_review")
    > txt = movie_review$review[1:100]
    > ids = movie_review$id[1:100]
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10)
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10, ids = ids)
    > # Example of stemming tokenizer
    > # stem_tokenizer =function(x) {
    > # lapply(word_tokenizer(x), SnowballC::wordStem, language="en")
    > # }
    > #------------------------------------------------
    > # PARALLEL iterators
    > #------------------------------------------------
    > library(text2vec)
    >
    > N_WORKERS = 1 # change 1 to number of cores in parallel backend
    > if(require(doParallel)) registerDoParallel(N_WORKERS)
    Loading required package: doParallel
    Loading required package: foreach
    Loading required package: iterators
    Loading required package: parallel
    > data("movie_review")
    > it = itoken_parallel(movie_review$review[1:100], n_chunks = N_WORKERS)
    > system.time(dtm <- create_dtm(it, hash_vectorizer(2**16), type = 'dgTMatrix'))
     user system elapsed
     0.02 0.00 2.13
    >
    >
    >
    > cleanEx()
    
    detaching 'package:doParallel', 'package:parallel',
     'package:iterators', 'package:foreach'
    
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11811 (sockconn)
    Execution halted
Flavor: r-devel-windows-ix86+x86_64

Version: 0.5.1
Check: whether package can be installed
Result: WARN
    Found the following significant warnings:
     D:/RCompile/CRANpkg/lib/4.0v3/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: 'void* realloc(void*, size_t)' moving an object of non-trivially copyable type 'struct std::pair<const std::pair<unsigned int, unsigned int>, int>'; use 'new' and 'delete' instead [-Wclass-memaccess]
     D:/RCompile/CRANpkg/lib/4.0v3/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: 'void* realloc(void*, size_t)' moving an object of non-trivially copyable type 'struct std::pair<const std::pair<unsigned int, unsigned int>, float>'; use 'new' and 'delete' instead [-Wclass-memaccess]
Flavor: r-devel-windows-ix86+x86_64-gcc8

Version: 0.5.1
Check: running examples for arch ‘i386’
Result: ERROR
    Running examples in 'text2vec-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: itoken
    > ### Title: Iterators (and parallel iterators) over input objects
    > ### Aliases: itoken itoken.list itoken.character itoken.iterator
    > ### itoken_parallel itoken_parallel.character
    > ### itoken_parallel.ifiles_parallel itoken_parallel.list
    >
    > ### ** Examples
    >
    > data("movie_review")
    > txt = movie_review$review[1:100]
    > ids = movie_review$id[1:100]
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10)
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10, ids = ids)
    > # Example of stemming tokenizer
    > # stem_tokenizer =function(x) {
    > # lapply(word_tokenizer(x), SnowballC::wordStem, language="en")
    > # }
    > #------------------------------------------------
    > # PARALLEL iterators
    > #------------------------------------------------
    > library(text2vec)
    >
    > N_WORKERS = 1 # change 1 to number of cores in parallel backend
    > if(require(doParallel)) registerDoParallel(N_WORKERS)
    Loading required package: doParallel
    Loading required package: foreach
    Loading required package: iterators
    Loading required package: parallel
    > data("movie_review")
    > it = itoken_parallel(movie_review$review[1:100], n_chunks = N_WORKERS)
    > system.time(dtm <- create_dtm(it, hash_vectorizer(2**16), type = 'dgTMatrix'))
     user system elapsed
     0.02 0.00 2.03
    >
    >
    >
    > cleanEx()
    
    detaching 'package:doParallel', 'package:parallel',
     'package:iterators', 'package:foreach'
    
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11425 (sockconn)
    Execution halted
Flavor: r-devel-windows-ix86+x86_64-gcc8

Version: 0.5.1
Check: running examples for arch ‘x64’
Result: ERROR
    Running examples in 'text2vec-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: itoken
    > ### Title: Iterators (and parallel iterators) over input objects
    > ### Aliases: itoken itoken.list itoken.character itoken.iterator
    > ### itoken_parallel itoken_parallel.character
    > ### itoken_parallel.ifiles_parallel itoken_parallel.list
    >
    > ### ** Examples
    >
    > data("movie_review")
    > txt = movie_review$review[1:100]
    > ids = movie_review$id[1:100]
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10)
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10, ids = ids)
    > # Example of stemming tokenizer
    > # stem_tokenizer =function(x) {
    > # lapply(word_tokenizer(x), SnowballC::wordStem, language="en")
    > # }
    > #------------------------------------------------
    > # PARALLEL iterators
    > #------------------------------------------------
    > library(text2vec)
    >
    > N_WORKERS = 1 # change 1 to number of cores in parallel backend
    > if(require(doParallel)) registerDoParallel(N_WORKERS)
    Loading required package: doParallel
    Loading required package: foreach
    Loading required package: iterators
    Loading required package: parallel
    > data("movie_review")
    > it = itoken_parallel(movie_review$review[1:100], n_chunks = N_WORKERS)
    > system.time(dtm <- create_dtm(it, hash_vectorizer(2**16), type = 'dgTMatrix'))
     user system elapsed
     0.02 0.00 2.42
    >
    >
    >
    > cleanEx()
    
    detaching 'package:doParallel', 'package:parallel',
     'package:iterators', 'package:foreach'
    
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11474 (sockconn)
    Execution halted
Flavor: r-devel-windows-ix86+x86_64-gcc8

Version: 0.5.1
Check: whether package can be installed
Result: WARN
    Found the following significant warnings:
     /home/hornik/tmp/R.check/r-patched-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, int>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
     /home/hornik/tmp/R.check/r-patched-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, float>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
Flavor: r-patched-linux-x86_64

Version: 0.5.1
Check: tests
Result: ERROR
     Running ‘testthat.R’ [10m/11m]
    Running the tests in ‘tests/testthat.R’ failed.
    Complete output:
     > Sys.setenv("R_TESTS" = "")
     > library(testthat)
     > library(text2vec)
     > library(mlapi)
     > data("movie_review")
     > test_check("text2vec")
     Killed
Flavors: r-patched-linux-x86_64, r-release-linux-x86_64

Version: 0.5.1
Check: whether package can be installed
Result: WARN
    Found the following significant warnings:
     /home/hornik/tmp/R.check/r-release-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, int>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
     /home/hornik/tmp/R.check/r-release-gcc/Work/build/Packages/sparsepp/include/sparsepp/spp_utils.h:422:44: warning: ‘void* realloc(void*, size_t)’ moving an object of non-trivially copyable type ‘struct std::pair<const std::pair<unsigned int, unsigned int>, float>’; use ‘new’ and ‘delete’ instead [-Wclass-memaccess]
Flavor: r-release-linux-x86_64

Version: 0.5.1
Check: running examples for arch ‘i386’
Result: ERROR
    Running examples in 'text2vec-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: itoken
    > ### Title: Iterators (and parallel iterators) over input objects
    > ### Aliases: itoken itoken.list itoken.character itoken.iterator
    > ### itoken_parallel itoken_parallel.character
    > ### itoken_parallel.ifiles_parallel itoken_parallel.list
    >
    > ### ** Examples
    >
    > data("movie_review")
    > txt = movie_review$review[1:100]
    > ids = movie_review$id[1:100]
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10)
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10, ids = ids)
    > # Example of stemming tokenizer
    > # stem_tokenizer =function(x) {
    > # lapply(word_tokenizer(x), SnowballC::wordStem, language="en")
    > # }
    > #------------------------------------------------
    > # PARALLEL iterators
    > #------------------------------------------------
    > library(text2vec)
    >
    > N_WORKERS = 1 # change 1 to number of cores in parallel backend
    > if(require(doParallel)) registerDoParallel(N_WORKERS)
    Loading required package: doParallel
    Loading required package: foreach
    Loading required package: iterators
    Loading required package: parallel
    > data("movie_review")
    > it = itoken_parallel(movie_review$review[1:100], n_chunks = N_WORKERS)
    > system.time(dtm <- create_dtm(it, hash_vectorizer(2**16), type = 'dgTMatrix'))
     user system elapsed
     0.02 0.00 2.08
    >
    >
    >
    > cleanEx()
    
    detaching 'package:doParallel', 'package:parallel',
     'package:iterators', 'package:foreach'
    
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11910 (sockconn)
    Execution halted
Flavor: r-release-windows-ix86+x86_64

Version: 0.5.1
Check: running examples for arch ‘x64’
Result: ERROR
    Running examples in 'text2vec-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: itoken
    > ### Title: Iterators (and parallel iterators) over input objects
    > ### Aliases: itoken itoken.list itoken.character itoken.iterator
    > ### itoken_parallel itoken_parallel.character
    > ### itoken_parallel.ifiles_parallel itoken_parallel.list
    >
    > ### ** Examples
    >
    > data("movie_review")
    > txt = movie_review$review[1:100]
    > ids = movie_review$id[1:100]
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10)
    > it = itoken(txt, tolower, word_tokenizer, n_chunks = 10, ids = ids)
    > # Example of stemming tokenizer
    > # stem_tokenizer =function(x) {
    > # lapply(word_tokenizer(x), SnowballC::wordStem, language="en")
    > # }
    > #------------------------------------------------
    > # PARALLEL iterators
    > #------------------------------------------------
    > library(text2vec)
    >
    > N_WORKERS = 1 # change 1 to number of cores in parallel backend
    > if(require(doParallel)) registerDoParallel(N_WORKERS)
    Loading required package: doParallel
    Loading required package: foreach
    Loading required package: iterators
    Loading required package: parallel
    > data("movie_review")
    > it = itoken_parallel(movie_review$review[1:100], n_chunks = N_WORKERS)
    > system.time(dtm <- create_dtm(it, hash_vectorizer(2**16), type = 'dgTMatrix'))
     user system elapsed
     0.0 0.0 2.9
    >
    >
    >
    > cleanEx()
    
    detaching 'package:doParallel', 'package:parallel',
     'package:iterators', 'package:foreach'
    
    Error: connections left open:
     <-CRANwin.fb05.statistik.uni-dortmund.de:11956 (sockconn)
    Execution halted
Flavor: r-release-windows-ix86+x86_64