download.lspace: Download Latent Semantic Spaces

View source: R/download.lspace.R

download.lspaceR Documentation

Download Latent Semantic Spaces

Description

Downloads the specified semantic space from osf.io/489he.

Usage

download.lspace(space = "100k_lsa", include.terms = TRUE,
  decompress = TRUE, check.md5 = TRUE, mode = "wb",
  dir = getOption("lingmatch.lspace.dir"), overwrite = FALSE)

Arguments

space

Name of one or more spaces you want to download, or 'all' for all available. '100k_lsa' is the default, and some other common options might be 'google', 'facebook', or 'glove'. See osf.io/489he/wiki for more information, and a full list of spaces.

include.terms

Logical; if FALSE, only the .dat.bz2 file is downloaded (which only has numeric vectors).

decompress

Logical; if TRUE (default), decompresses the downloaded file with the bunzip2 system command assuming it is available
(as indicated by Sys.which('bunzip2')).

check.md5

Logical; if TRUE (default), retrieves the MD5 checksum from OSF, and compares it with that calculated from the downloaded file to check its integrity.

mode

A character specifying the file write mode; default is 'wb'. See download.file.

dir

Directory in which to save the space. Specify this here, or set the lspace directory option (e.g., options(lingmatch.lspace.dir = '~/Latent Semantic Spaces')), or use lma_initdirs to initialize a directory.

overwrite

Logical; if TRUE, will replace existing files.

Value

A character vector with paths to the [1] data and [2] term files.

See Also

Other Latent Semantic Space functions: lma_lspace(), select.lspace(), standardize.lspace()

Examples

## Not run: 

download.lspace("glove_crawl", dir = "~/Latent Semantic Spaces")

## End(Not run)

lingmatch documentation built on Aug. 29, 2023, 1:09 a.m.