{"id":16274224,"url":"https://github.com/trinker/corenlpsetup","last_synced_at":"2025-04-08T16:27:32.191Z","repository":{"id":146663182,"uuid":"88001853","full_name":"trinker/coreNLPsetup","owner":"trinker","description":"Easy coreNLP setup","archived":false,"fork":false,"pushed_at":"2021-10-07T14:09:55.000Z","size":17,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-14T13:15:19.952Z","etag":null,"topics":["corenlp","r","setup"],"latest_commit_sha":null,"homepage":"","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trinker.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-12T02:41:39.000Z","updated_at":"2021-10-07T14:09:59.000Z","dependencies_parsed_at":"2023-04-14T16:20:07.146Z","dependency_job_id":null,"html_url":"https://github.com/trinker/coreNLPsetup","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trinker%2FcoreNLPsetup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trinker%2FcoreNLPsetup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trinker%2FcoreNLPsetup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trinker%2FcoreNLPsetup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trinker","download_url":"https://codeload.github.com/trinker/coreNLPsetup/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247880721,"owners_count":21011718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["corenlp","r","setup"],"created_at":"2024-10-10T18:27:49.789Z","updated_at":"2025-04-08T16:27:32.171Z","avatar_url":"https://github.com/trinker.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\ntitle: \"coreNLPsetup\"\ndate: \"`r format(Sys.time(), '%d %B, %Y')`\"\noutput:\n  md_document:\n    toc: true      \n---\n\n```{r, echo=FALSE}\ndesc \u003c- suppressWarnings(readLines(\"DESCRIPTION\"))\nregex \u003c- \"(^Version:\\\\s+)(\\\\d+\\\\.\\\\d+\\\\.\\\\d+)\"\nloc \u003c- grep(regex, desc)\nver \u003c- gsub(regex, \"\\\\2\", desc[loc])\nverbadge \u003c- sprintf('\u003ca href=\"https://img.shields.io/badge/Version-%s-orange.svg\"\u003e\u003cimg src=\"https://img.shields.io/badge/Version-%s-orange.svg\" alt=\"Version\"/\u003e\u003c/a\u003e\u003c/p\u003e', ver, ver)\n````\n\n```{r, echo=FALSE, message=FALSE, warning=FALSE}\nlibrary(knitr)\nknit_hooks$set(htmlcap = function(before, options, envir) {\n  if(!before) {\n    paste('\u003cp class=\"caption\"\u003e\u003cb\u003e\u003cem\u003e',options$htmlcap,\"\u003c/em\u003e\u003c/b\u003e\u003c/p\u003e\",sep=\"\")\n    }\n    })\nknitr::opts_knit$set(self.contained = TRUE, cache = FALSE)\nknitr::opts_chunk$set(fig.path = \"tools/figure/\")\n```\n\n\n[![Build Status](https://travis-ci.org/trinker/coreNLPsetup.svg?branch=master)](https://travis-ci.org/trinker/coreNLPsetup)\n[![Coverage Status](https://coveralls.io/repos/trinker/coreNLPsetup/badge.svg?branch=master)](https://coveralls.io/r/trinker/coreNLPsetup?branch=master)\n`r verbadge`\n\n\n**coreNLPsetup** is a set of tools to ensure proper setup of [Stanford's CoreNLP](https://stanfordnlp.github.io/CoreNLP/).\n\n# Tools\n\n\n| Function                  | Task       | Description                           | \n|---------------------------|------------|---------------------------------------| \n| `check_setup`             | checking   | Check that Java and CoreNLP are setup | \n| `check_java`              | checking   | Check that Java is setup              |  \n| `check_stanford`          | checking   | Check that CoreNLP is setup           |  \n| `coreNLP_version`         | constant   | The current version of corNLP         |  \n| `jave_version`            | constant   | The current version of Java           | \n| `coreNLP_loc`             | config     | Configure a CoreNLP location path     |          \n| `coreNLP_url`             | config     | Configure the CoreNLP url             |          \n\n\n# Installation\n\nTo download the development version of **coreNLPsetup**:\n\nDownload the [zip ball](https://github.com/trinker/coreNLPsetup/zipball/master) or [tar ball](https://github.com/trinker/coreNLPsetup/tarball/master), decompress and run `R CMD INSTALL` on it, or use the **pacman** package to install the development version:\n\n```r\nif (!require(\"pacman\")) install.packages(\"pacman\")\npacman::p_load_current_gh(\"trinker/coreNLPsetup\")\n```\n\n# Contact\n\nYou are welcome to:    \n- submit suggestions and bug-reports at: \u003chttps://github.com/trinker/coreNLPsetup/issues\u003e    \n- send a pull request on: \u003chttps://github.com/trinker/coreNLPsetup/\u003e    \n- compose a friendly e-mail to: \u003ctyler.rinker@gmail.com\u003e    \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrinker%2Fcorenlpsetup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrinker%2Fcorenlpsetup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrinker%2Fcorenlpsetup/lists"}