texts
sequence
meta
dict
scores
sequence
avg_score
float64
0
0.13
num_sents
int64
5
5
tagged_pii_results
list
[ "/*\r\n * Copyright (C) the libgit2 contributors. ", "All rights reserved.", "\r\n *\r\n * This file is part of libgit2, distributed under the GNU GPL v2 with\r\n * a Linking Exception. ", "For full terms see the included COPYING file.", "\r\n */\r\n\r\n#include \"refs.h\"\r\n\r\n#include \"hash.h\"\r\n#include \"repository.h\"\r\n#include \"fileops.h\"\r\n#include \"filebuf.h\"\r\n#include \"pack.h\"\r\n#include \"reflog.h\"\r\n#include \"refdb.h\"\r\n\r\n#include <git2/tag.h>\r\n#include <git2/object.h>\r\n#include <git2/oid.h>\r\n#include <git2/branch.h>\r\n#include <git2/refs.h>\r\n#include <git2/refdb.h>\r\n#include <git2/sys/refs.h>\r\n#include <git2/signature.h>\r\n#include <git2/commit.h>\r\n\r\nbool git_reference__enable_symbolic_ref_target_validation = true;\r\n\r\n#define DEFAULT_NESTING_LEVEL\t5\r\n#define MAX_NESTING_LEVEL\t\t10\r\n\r\nenum {\r\n\tGIT_PACKREF_HAS_PEEL = 1,\r\n\tGIT_PACKREF_WAS_LOOSE = 2\r\n};\r\n\r\nstatic git_reference *alloc_ref(const char *name)\r\n{\r\n\tgit_reference *ref = NULL;\r\n\tsize_t namelen = strlen(name), reflen;\r\n\r\n\tif (!", "GIT_ADD_SIZET_OVERFLOW(&reflen, sizeof(git_reference), namelen) &&\r\n\t\t!", "GIT_ADD_SIZET_OVERFLOW(&reflen, reflen, 1) &&\r\n\t\t(ref = git__calloc(1, reflen)) !", "= NULL)\r\n\t\tmemcpy(ref->name, name, namelen + 1);\r\n\r\n\treturn ref;\r\n}\r\n\r\ngit_reference *git_reference__alloc_symbolic(\r\n\tconst char *name, const char *target)\r\n{\r\n\tgit_reference *ref;\r\n\r\n\tassert(name && target);\r\n\r\n\tref = alloc_ref(name);\r\n\tif (!", "ref)\r\n\t\treturn NULL;\r\n\r\n\tref->type = GIT_REF_SYMBOLIC;\r\n\r\n\tif ((ref->target.symbolic = git__strdup(target)) == NULL) {\r\n\t\tgit__free(ref);\r\n\t\treturn NULL;\r\n\t}\r\n\r\n\treturn ref;\r\n}\r\n\r\ngit_reference *git_reference__alloc(\r\n\tconst char *name,\r\n\tconst git_oid *oid,\r\n\tconst git_oid *peel)\r\n{\r\n\tgit_reference *ref;\r\n\r\n\tassert(name && oid);\r\n\r\n\tref = alloc_ref(name);\r\n\tif (!", "ref)\r\n\t\treturn NULL;\r\n\r\n\tref->type = GIT_REF_OID;\r\n\tgit_oid_cpy(&ref->target.oid, oid);\r\n\r\n\tif (peel !", "= NULL)\r\n\t\tgit_oid_cpy(&ref->peel, peel);\r\n\r\n\treturn ref;\r\n}\r\n\r\ngit_reference *git_reference__set_name(\r\n\tgit_reference *ref, const char *name)\r\n{\r\n\tsize_t namelen = strlen(name);\r\n\tsize_t reflen;\r\n\tgit_reference *rewrite = NULL;\r\n\r\n\tif (!", "GIT_ADD_SIZET_OVERFLOW(&reflen, sizeof(git_reference), namelen) &&\r\n\t\t!", "GIT_ADD_SIZET_OVERFLOW(&reflen, reflen, 1) &&\r\n\t\t(rewrite = git__realloc(ref, reflen)) !", "= NULL)\r\n\t\tmemcpy(rewrite->name, name, namelen + 1);\r\n\r\n\treturn rewrite;\r\n}\r\n\r\nint git_reference_dup(git_reference **dest, git_reference *source)\r\n{\r\n\tif (source->type == GIT_REF_SYMBOLIC)\r\n\t\t*dest = git_reference__alloc_symbolic(source->name, source->target.symbolic);\r\n\telse\r\n\t\t*dest = git_reference__alloc(source->name, &source->target.oid, &source->peel);\r\n\r\n\tGITERR_CHECK_ALLOC(*dest);\r\n\r\n\treturn 0;\r\n}\r\n\r\nvoid git_reference_free(git_reference *reference)\r\n{\r\n\tif (reference == NULL)\r\n\t\treturn;\r\n\r\n\tif (reference->type == GIT_REF_SYMBOLIC)\r\n\t\tgit__free(reference->target.symbolic);\r\n\r\n\tif (reference->db)\r\n\t\tGIT_REFCOUNT_DEC(reference->db, git_refdb__free);\r\n\r\n\tgit__free(reference);\r\n}\r\n\r\nint git_reference_delete(git_reference *ref)\r\n{\r\n\tconst git_oid *old_id = NULL;\r\n\tconst char *old_target = NULL;\r\n\r\n\tif (ref->type == GIT_REF_OID)\r\n\t\told_id = &ref->target.oid;\r\n\telse\r\n\t\told_target = ref->target.symbolic;\r\n\r\n\treturn git_refdb_delete(ref->db, ref->name, old_id, old_target);\r\n}\r\n\r\nint git_reference_remove(git_repository *repo, const char *name)\r\n{\r\n\tgit_refdb *db;\r\n\tint error;\r\n\r\n\tif ((error = git_repository_refdb__weakptr(&db, repo)) < 0)\r\n\t\treturn error;\r\n\r\n\treturn git_refdb_delete(db, name, NULL, NULL);\r\n}\r\n\r\nint git_reference_lookup(git_reference **ref_out,\r\n\tgit_repository *repo, const char *name)\r\n{\r\n\treturn git_reference_lookup_resolved(ref_out, repo, name, 0);\r\n}\r\n\r\nint git_reference_name_to_id(\r\n\tgit_oid *out, git_repository *repo, const char *name)\r\n{\r\n\tint error;\r\n\tgit_reference *ref;\r\n\r\n\tif ((error = git_reference_lookup_resolved(&ref, repo, name, -1)) < 0)\r\n\t\treturn error;\r\n\r\n\tgit_oid_cpy(out, git_reference_target(ref));\r\n\tgit_reference_free(ref);\r\n\treturn 0;\r\n}\r\n\r\nstatic int reference_normalize_for_repo(\r\n\tgit_refname_t out,\r\n\tgit_repository *repo,\r\n\tconst char *name,\r\n\tbool validate)\r\n{\r\n\tint precompose;\r\n\tunsigned int flags = GIT_REF_FORMAT_ALLOW_ONELEVEL;\r\n\r\n\tif (!", "git_repository__cvar(&precompose, repo, GIT_CVAR_PRECOMPOSE) &&\r\n\t\tprecompose)\r\n\t\tflags |= GIT_REF_FORMAT__PRECOMPOSE_UNICODE;\r\n\r\n\tif (!", "validate)\r\n\t\tflags |= GIT_REF_FORMAT__VALIDATION_DISABLE;\r\n\r\n\treturn git_reference_normalize_name(out, GIT_REFNAME_MAX, name, flags);\r\n}\r\n\r\nint git_reference_lookup_resolved(\r\n\tgit_reference **ref_out,\r\n\tgit_repository *repo,\r\n\tconst char *name,\r\n\tint max_nesting)\r\n{\r\n\tgit_refname_t scan_name;\r\n\tgit_ref_t scan_type;\r\n\tint error = 0, nesting;\r\n\tgit_reference *ref = NULL;\r\n\tgit_refdb *refdb;\r\n\r\n\tassert(ref_out && repo && name);\r\n\r\n\t*ref_out = NULL;\r\n\r\n\tif (max_nesting > MAX_NESTING_LEVEL)\r\n\t\tmax_nesting = MAX_NESTING_LEVEL;\r\n\telse if (max_nesting < 0)\r\n\t\tmax_nesting = DEFAULT_NESTING_LEVEL;\r\n\r\n\tscan_type = GIT_REF_SYMBOLIC;\r\n\r\n\tif ((error = reference_normalize_for_repo(scan_name, repo, name, true)) < 0)\r\n\t\treturn error;\r\n\r\n\tif ((error = git_repository_refdb__weakptr(&refdb, repo)) < 0)\r\n\t\treturn error;\r\n\r\n\tfor (nesting = max_nesting;\r\n\t\t nesting >= 0 && scan_type == GIT_REF_SYMBOLIC;\r\n\t\t nesting--)\r\n\t{\r\n\t\tif (nesting !", "= max_nesting) {\r\n\t\t\tstrncpy(scan_name, ref->target.symbolic, sizeof(scan_name));\r\n\t\t\tgit_reference_free(ref);\r\n\t\t}\r\n\r\n\t\tif ((error = git_refdb_lookup(&ref, refdb, scan_name)) < 0)\r\n\t\t\treturn error;\r\n\r\n\t\tscan_type = ref->type;\r\n\t}\r\n\r\n\tif (scan_type !", "= GIT_REF_OID && max_nesting !", "= 0) {\r\n\t\tgiterr_set(GITERR_REFERENCE,\r\n\t\t\t\"cannot resolve reference (>%u levels deep)\", max_nesting);\r\n\t\tgit_reference_free(ref);\r\n\t\treturn -1;\r\n\t}\r\n\r\n\t*ref_out = ref;\r\n\treturn 0;\r\n}\r\n\r\nint git_reference__read_head(\r\n\tgit_reference **out,\r\n\tgit_repository *repo,\r\n\tconst char *path)\r\n{\r\n\tgit_buf reference = GIT_BUF_INIT;\r\n\tchar *name = NULL;\r\n\tint error;\r\n\r\n\tif ((error = git_futils_readbuffer(&reference, path)) < 0)\r\n\t\tgoto out;\r\n\tgit_buf_rtrim(&reference);\r\n\r\n\tif (git__strncmp(reference.ptr, GIT_SYMREF, strlen(GIT_SYMREF)) == 0) {\r\n\t\tgit_buf_consume(&reference, reference.ptr + strlen(GIT_SYMREF));\r\n\r\n\t\tname = git_path_basename(path);\r\n\r\n\t\tif ((*out = git_reference__alloc_symbolic(name, reference.ptr)) == NULL) {\r\n\t\t\terror = -1;\r\n\t\t\tgoto out;\r\n\t\t}\r\n\t} else {\r\n\t\tif ((error = git_reference_lookup(out, repo, reference.ptr)) < 0)\r\n\t\t\tgoto out;\r\n\t}\r\n\r\nout:\r\n\tgit__free(name);\r\n\tgit_buf_free(&reference);\r\n\r\n\treturn error;\r\n}\r\n\r\nint git_reference_dwim(git_reference **out, git_repository *repo, const char *refname)\r\n{\r\n\tint error = 0, i;\r\n\tbool fallbackmode = true, foundvalid = false;\r\n\tgit_reference *ref;\r\n\tgit_buf refnamebuf = GIT_BUF_INIT, name = GIT_BUF_INIT;\r\n\r\n\tstatic const char* formatters[] = {\r\n\t\t\"%s\",\r\n\t\tGIT_REFS_DIR \"%s\",\r\n\t\tGIT_REFS_TAGS_DIR \"%s\",\r\n\t\tGIT_REFS_HEADS_DIR \"%s\",\r\n\t\tGIT_REFS_REMOTES_DIR \"%s\",\r\n\t\tGIT_REFS_REMOTES_DIR \"%s/\" GIT_HEAD_FILE,\r\n\t\tNULL\r\n\t};\r\n\r\n\tif (*refname)\r\n\t\tgit_buf_puts(&name, refname);\r\n\telse {\r\n\t\tgit_buf_puts(&name, GIT_HEAD_FILE);\r\n\t\tfallbackmode = false;\r\n\t}\r\n\r\n\tfor (i = 0; formatters[i] && (fallbackmode || i == 0); i++) {\r\n\r\n\t\tgit_buf_clear(&refnamebuf);\r\n\r\n\t\tif ((error = git_buf_printf(&refnamebuf, formatters[i], git_buf_cstr(&name))) < 0)\r\n\t\t\tgoto cleanup;\r\n\r\n\t\tif (!", "git_reference_is_valid_name(git_buf_cstr(&refnamebuf))) {\r\n\t\t\terror = GIT_EINVALIDSPEC;\r\n\t\t\tcontinue;\r\n\t\t}\r\n\t\tfoundvalid = true;\r\n\r\n\t\terror = git_reference_lookup_resolved(&ref, repo, git_buf_cstr(&refnamebuf), -1);\r\n\r\n\t\tif (!", "error) {\r\n\t\t\t*out = ref;\r\n\t\t\terror = 0;\r\n\t\t\tgoto cleanup;\r\n\t\t}\r\n\r\n\t\tif (error !", "= GIT_ENOTFOUND)\r\n\t\t\tgoto cleanup;\r\n\t}\r\n\r\ncleanup:\r\n\tif (error && !", "foundvalid) {\r\n\t\t/* never found a valid reference name */\r\n\t\tgiterr_set(GITERR_REFERENCE,\r\n\t\t\t\"could not use '%s' as valid reference name\", git_buf_cstr(&name));\r\n\t}\r\n\r\n\tif (error == GIT_ENOTFOUND)\r\n\t\tgiterr_set(GITERR_REFERENCE, \"no reference found for shorthand '%s'\", refname);\r\n\r\n\tgit_buf_free(&name);\r\n\tgit_buf_free(&refnamebuf);\r\n\treturn error;\r\n}\r\n\r\n/**\r\n * Getters\r\n */\r\ngit_ref_t git_reference_type(const git_reference *ref)\r\n{\r\n\tassert(ref);\r\n\treturn ref->type;\r\n}\r\n\r\nconst char *git_reference_name(const git_reference *ref)\r\n{\r\n\tassert(ref);\r\n\treturn ref->name;\r\n}\r\n\r\ngit_repository *git_reference_owner(const git_reference *ref)\r\n{\r\n\tassert(ref);\r\n\treturn ref->db->repo;\r\n}\r\n\r\nconst git_oid *git_reference_target(const git_reference *ref)\r\n{\r\n\tassert(ref);\r\n\r\n\tif (ref->type !", "= GIT_REF_OID)\r\n\t\treturn NULL;\r\n\r\n\treturn &ref->target.oid;\r\n}\r\n\r\nconst git_oid *git_reference_target_peel(const git_reference *ref)\r\n{\r\n\tassert(ref);\r\n\r\n\tif (ref->type !", "= GIT_REF_OID || git_oid_iszero(&ref->peel))\r\n\t\treturn NULL;\r\n\r\n\treturn &ref->peel;\r\n}\r\n\r\nconst char *git_reference_symbolic_target(const git_reference *ref)\r\n{\r\n\tassert(ref);\r\n\r\n\tif (ref->type !", "= GIT_REF_SYMBOLIC)\r\n\t\treturn NULL;\r\n\r\n\treturn ref->target.symbolic;\r\n}\r\n\r\nstatic int reference__create(\r\n\tgit_reference **ref_out,\r\n\tgit_repository *repo,\r\n\tconst char *name,\r\n\tconst git_oid *oid,\r\n\tconst char *symbolic,\r\n\tint force,\r\n\tconst git_signature *signature,\r\n\tconst char *log_message,\r\n\tconst git_oid *old_id,\r\n\tconst char *old_target)\r\n{\r\n\tgit_refname_t normalized;\r\n\tgit_refdb *refdb;\r\n\tgit_reference *ref = NULL;\r\n\tint error = 0;\r\n\r\n\tassert(repo && name);\r\n\tassert(symbolic || signature);\r\n\r\n\tif (ref_out)\r\n\t\t*ref_out = NULL;\r\n\r\n\terror = reference_normalize_for_repo(normalized, repo, name, true);\r\n\tif (error < 0)\r\n\t\treturn error;\r\n\r\n\terror = git_repository_refdb__weakptr(&refdb, repo);\r\n\tif (error < 0)\r\n\t\treturn error;\r\n\r\n\tif (oid !", "= NULL) {\r\n\t\tassert(symbolic == NULL);\r\n\r\n\t\tif (!", "git_object__is_valid(repo, oid, GIT_OBJ_ANY)) {\r\n\t\t\tgiterr_set(GITERR_REFERENCE,\r\n\t\t\t\t\"target OID for the reference doesn't exist on the repository\");\r\n\t\t\treturn -1;\r\n\t\t}\r\n\r\n\t\tref = git_reference__alloc(normalized, oid, NULL);\r\n\t} else {\r\n\t\tgit_refname_t normalized_target;\r\n\r\n\t\terror = reference_normalize_for_repo(normalized_target, repo,\r\n\t\t\tsymbolic, git_reference__enable_symbolic_ref_target_validation);\r\n\r\n\t\tif (error < 0)\r\n\t\t\treturn error;\r\n\r\n\t\tref = git_reference__alloc_symbolic(normalized, normalized_target);\r\n\t}\r\n\r\n\tGITERR_CHECK_ALLOC(ref);\r\n\r\n\tif ((error = git_refdb_write(refdb, ref, force, signature, log_message, old_id, old_target)) < 0) {\r\n\t\tgit_reference_free(ref);\r\n\t\treturn error;\r\n\t}\r\n\r\n\tif (ref_out == NULL)\r\n\t\tgit_reference_free(ref);\r\n\telse\r\n\t\t*ref_out = ref;\r\n\r\n\treturn 0;\r\n}\r\n\r\nint configured_ident(git_signature **out, const git_repository *repo)\r\n{\r\n\tif (repo->ident_name && repo->ident_email)\r\n\t\treturn git_signature_now(out, repo->ident_name, repo->ident_email);\r\n\r\n\t/* if not configured let us fall-through to the next method */\r\n\treturn -1;\r\n}\r\n\r\nint git_reference__log_signature(git_signature **out, git_repository *repo)\r\n{\r\n\tint error;\r\n\tgit_signature *who;\r\n\r\n\tif(((error = configured_ident(&who, repo)) < 0) &&\r\n\t ((error = git_signature_default(&who, repo)) < 0) &&\r\n\t ((error = git_signature_now(&who, \"unknown\", \"unknown\")) < 0))\r\n\t\treturn error;\r\n\r\n\t*out = who;\r\n\treturn 0;\r\n}\r\n\r\nint git_reference_create_matching(\r\n\tgit_reference **ref_out,\r\n\tgit_repository *repo,\r\n\tconst char *name,\r\n\tconst git_oid *id,\r\n\tint force,\r\n\tconst git_oid *old_id,\r\n\tconst char *log_message)\r\n\r\n{\r\n\tint error;\r\n\tgit_signature *who = NULL;\r\n\r\n\tassert(id);\r\n\r\n\tif ((error = git_reference__log_signature(&who, repo)) < 0)\r\n\t\treturn error;\r\n\r\n\terror = reference__create(\r\n\t\tref_out, repo, name, id, NULL, force, who, log_message, old_id, NULL);\r\n\r\n\tgit_signature_free(who);\r\n\treturn error;\r\n}\r\n\r\nint git_reference_create(\r\n\tgit_reference **ref_out,\r\n\tgit_repository *repo,\r\n\tconst char *name,\r\n\tconst git_oid *id,\r\n\tint force,\r\n\tconst char *log_message)\r\n{\r\n return git_reference_create_matching(ref_out, repo, name, id, force, NULL, log_message);\r\n}\r\n\r\nint git_reference_symbolic_create_matching(\r\n\tgit_reference **ref_out,\r\n\tgit_repository *repo,\r\n\tconst char *name,\r\n\tconst char *target,\r\n\tint force,\r\n\tconst char *old_target,\r\n\tconst char *log_message)\r\n{\r\n\tint error;\r\n\tgit_signature *who = NULL;\r\n\r\n\tassert(target);\r\n\r\n\tif ((error = git_reference__log_signature(&who, repo)) < 0)\r\n\t\treturn error;\r\n\r\n\terror = reference__create(\r\n\t\tref_out, repo, name, NULL, target, force, who, log_message, NULL, old_target);\r\n\r\n\tgit_signature_free(who);\r\n\treturn error;\r\n}\r\n\r\nint git_reference_symbolic_create(\r\n\tgit_reference **ref_out,\r\n\tgit_repository *repo,\r\n\tconst char *name,\r\n\tconst char *target,\r\n\tint force,\r\n\tconst char *log_message)\r\n{\r\n\treturn git_reference_symbolic_create_matching(ref_out, repo, name, target, force, NULL, log_message);\r\n}\r\n\r\nstatic int ensure_is_an_updatable_direct_reference(git_reference *ref)\r\n{\r\n\tif (ref->type == GIT_REF_OID)\r\n\t\treturn 0;\r\n\r\n\tgiterr_set(GITERR_REFERENCE, \"cannot set OID on symbolic reference\");\r\n\treturn -1;\r\n}\r\n\r\nint git_reference_set_target(\r\n\tgit_reference **out,\r\n\tgit_reference *ref,\r\n\tconst git_oid *id,\r\n\tconst char *log_message)\r\n{\r\n\tint error;\r\n\tgit_repository *repo;\r\n\r\n\tassert(out && ref && id);\r\n\r\n\trepo = ref->db->repo;\r\n\r\n\tif ((error = ensure_is_an_updatable_direct_reference(ref)) < 0)\r\n\t\treturn error;\r\n\r\n\treturn git_reference_create_matching(out, repo, ref->name, id, 1, &ref->target.oid, log_message);\r\n}\r\n\r\nstatic int ensure_is_an_updatable_symbolic_reference(git_reference *ref)\r\n{\r\n\tif (ref->type == GIT_REF_SYMBOLIC)\r\n\t\treturn 0;\r\n\r\n\tgiterr_set(GITERR_REFERENCE, \"cannot set symbolic target on a direct reference\");\r\n\treturn -1;\r\n}\r\n\r\nint git_reference_symbolic_set_target(\r\n\tgit_reference **out,\r\n\tgit_reference *ref,\r\n\tconst char *target,\r\n\tconst char *log_message)\r\n{\r\n\tint error;\r\n\r\n\tassert(out && ref && target);\r\n\r\n\tif ((error = ensure_is_an_updatable_symbolic_reference(ref)) < 0)\r\n\t\treturn error;\r\n\r\n\treturn git_reference_symbolic_create_matching(\r\n\t\tout, ref->db->repo, ref->name, target, 1, ref->target.symbolic, log_message);\r\n}\r\n\r\ntypedef struct {\r\n const char *old_name;\r\n git_refname_t new_name;\r\n} rename_cb_data;\r\n\r\nstatic int update_wt_heads(git_repository *repo, const char *path, void *payload)\r\n{\r\n\trename_cb_data *data = (rename_cb_data *) payload;\r\n\tgit_reference *head = NULL;\r\n\tchar *gitdir = NULL;\r\n\tint error;\r\n\r\n\tif ((error = git_reference__read_head(&head, repo, path)) < 0) {\r\n\t\tgiterr_set(GITERR_REFERENCE, \"could not read HEAD when renaming references\");\r\n\t\tgoto out;\r\n\t}\r\n\r\n\tif ((gitdir = git_path_dirname(path)) == NULL) {\r\n\t\terror = -1;\r\n\t\tgoto out;\r\n\t}\r\n\r\n\tif (git_reference_type(head) !", "= GIT_REF_SYMBOLIC ||\r\n\t git__strcmp(head->target.symbolic, data->old_name) !", "= 0) {\r\n\t\terror = 0;\r\n\t\tgoto out;\r\n\t}\r\n\r\n\t/* Update HEAD it was pointing to the reference being renamed */\r\n\tif ((error = git_repository_create_head(gitdir, data->new_name)) < 0) {\r\n\t\tgiterr_set(GITERR_REFERENCE, \"failed to update HEAD after renaming reference\");\r\n\t\tgoto out;\r\n\t}\r\n\r\nout:\r\n\tgit_reference_free(head);\r\n\tgit__free(gitdir);\r\n\r\n\treturn error;\r\n}\r\n\r\nstatic int reference__rename(git_reference **out, git_reference *ref, const char *new_name, int force,\r\n\t\t\t\t const git_signature *signature, const char *message)\r\n{\r\n\tgit_repository *repo;\r\n\tgit_refname_t normalized;\r\n\tbool should_head_be_updated = false;\r\n\tint error = 0;\r\n\r\n\tassert(ref && new_name && signature);\r\n\r\n\trepo = git_reference_owner(ref);\r\n\r\n\tif ((error = reference_normalize_for_repo(\r\n\t\tnormalized, repo, new_name, true)) < 0)\r\n\t\treturn error;\r\n\r\n\t/* Check if we have to update HEAD. */", "\r\n\tif ((error = git_branch_is_head(ref)) < 0)\r\n\t\treturn error;\r\n\r\n\tshould_head_be_updated = (error > 0);\r\n\r\n\tif ((error = git_refdb_rename(out, ref->db, ref->name, normalized, force, signature, message)) < 0)\r\n\t\treturn error;\r\n\r\n\t/* Update HEAD if it was pointing to the reference being renamed */\r\n\tif (should_head_be_updated) {\r\n\t\terror = git_repository_set_head(ref->db->repo, normalized);\r\n\t} else {\r\n\t\trename_cb_data payload;\r\n\t\tpayload.old_name = ref->name;\r\n\t\tmemcpy(&payload.new_name, &normalized, sizeof(normalized));\r\n\r\n\t\terror = git_repository_foreach_head(repo, update_wt_heads, &payload);\r\n\t}\r\n\r\n\treturn error;\r\n}\r\n\r\n\r\nint git_reference_rename(\r\n\tgit_reference **out,\r\n\tgit_reference *ref,\r\n\tconst char *new_name,\r\n\tint force,\r\n\tconst char *log_message)\r\n{\r\n\tgit_signature *who;\r\n\tint error;\r\n\r\n\tif ((error = git_reference__log_signature(&who, ref->db->repo)) < 0)\r\n\t\treturn error;\r\n\r\n\terror = reference__rename(out, ref, new_name, force, who, log_message);\r\n\tgit_signature_free(who);\r\n\r\n\treturn error;\r\n}\r\n\r\nint git_reference_resolve(git_reference **ref_out, const git_reference *ref)\r\n{\r\n\tswitch (git_reference_type(ref)) {\r\n\tcase GIT_REF_OID:\r\n\t\treturn git_reference_lookup(ref_out, ref->db->repo, ref->name);\r\n\r\n\tcase GIT_REF_SYMBOLIC:\r\n\t\treturn git_reference_lookup_resolved(ref_out, ref->db->repo, ref->target.symbolic, -1);\r\n\r\n\tdefault:\r\n\t\tgiterr_set(GITERR_REFERENCE, \"invalid reference\");\r\n\t\treturn -1;\r\n\t}\r\n}\r\n\r\nint git_reference_foreach(\r\n\tgit_repository *repo,\r\n\tgit_reference_foreach_cb callback,\r\n\tvoid *payload)\r\n{\r\n\tgit_reference_iterator *iter;\r\n\tgit_reference *ref;\r\n\tint error;\r\n\r\n\tif ((error = git_reference_iterator_new(&iter, repo)) < 0)\r\n\t\treturn error;\r\n\r\n\twhile (!(", "error = git_reference_next(&ref, iter))) {\r\n\t\tif ((error = callback(ref, payload)) !", "= 0) {\r\n\t\t\tgiterr_set_after_callback(error);\r\n\t\t\tbreak;\r\n\t\t}\r\n\t}\r\n\r\n\tif (error == GIT_ITEROVER)\r\n\t\terror = 0;\r\n\r\n\tgit_reference_iterator_free(iter);\r\n\treturn error;\r\n}\r\n\r\nint git_reference_foreach_name(\r\n\tgit_repository *repo,\r\n\tgit_reference_foreach_name_cb callback,\r\n\tvoid *payload)\r\n{\r\n\tgit_reference_iterator *iter;\r\n\tconst char *refname;\r\n\tint error;\r\n\r\n\tif ((error = git_reference_iterator_new(&iter, repo)) < 0)\r\n\t\treturn error;\r\n\r\n\twhile (!(", "error = git_reference_next_name(&refname, iter))) {\r\n\t\tif ((error = callback(refname, payload)) !", "= 0) {\r\n\t\t\tgiterr_set_after_callback(error);\r\n\t\t\tbreak;\r\n\t\t}\r\n\t}\r\n\r\n\tif (error == GIT_ITEROVER)\r\n\t\terror = 0;\r\n\r\n\tgit_reference_iterator_free(iter);\r\n\treturn error;\r\n}\r\n\r\nint git_reference_foreach_glob(\r\n\tgit_repository *repo,\r\n\tconst char *glob,\r\n\tgit_reference_foreach_name_cb callback,\r\n\tvoid *payload)\r\n{\r\n\tgit_reference_iterator *iter;\r\n\tconst char *refname;\r\n\tint error;\r\n\r\n\tif ((error = git_reference_iterator_glob_new(&iter, repo, glob)) < 0)\r\n\t\treturn error;\r\n\r\n\twhile (!(", "error = git_reference_next_name(&refname, iter))) {\r\n\t\tif ((error = callback(refname, payload)) !", "= 0) {\r\n\t\t\tgiterr_set_after_callback(error);\r\n\t\t\tbreak;\r\n\t\t}\r\n\t}\r\n\r\n\tif (error == GIT_ITEROVER)\r\n\t\terror = 0;\r\n\r\n\tgit_reference_iterator_free(iter);\r\n\treturn error;\r\n}\r\n\r\nint git_reference_iterator_new(git_reference_iterator **out, git_repository *repo)\r\n{\r\n\tgit_refdb *refdb;\r\n\r\n\tif (git_repository_refdb__weakptr(&refdb, repo) < 0)\r\n\t\treturn -1;\r\n\r\n\treturn git_refdb_iterator(out, refdb, NULL);\r\n}\r\n\r\nint git_reference_iterator_glob_new(\r\n\tgit_reference_iterator **out, git_repository *repo, const char *glob)\r\n{\r\n\tgit_refdb *refdb;\r\n\r\n\tif (git_repository_refdb__weakptr(&refdb, repo) < 0)\r\n\t\treturn -1;\r\n\r\n\treturn git_refdb_iterator(out, refdb, glob);\r\n}\r\n\r\nint git_reference_next(git_reference **out, git_reference_iterator *iter)\r\n{\r\n\treturn git_refdb_iterator_next(out, iter);\r\n}\r\n\r\nint git_reference_next_name(const char **out, git_reference_iterator *iter)\r\n{\r\n\treturn git_refdb_iterator_next_name(out, iter);\r\n}\r\n\r\nvoid git_reference_iterator_free(git_reference_iterator *iter)\r\n{\r\n\tif (iter == NULL)\r\n\t\treturn;\r\n\r\n\tgit_refdb_iterator_free(iter);\r\n}\r\n\r\nstatic int cb__reflist_add(const char *ref, void *data)\r\n{\r\n\tchar *name = git__strdup(ref);\r\n\tGITERR_CHECK_ALLOC(name);\r\n\treturn git_vector_insert((git_vector *)data, name);\r\n}\r\n\r\nint git_reference_list(\r\n\tgit_strarray *array,\r\n\tgit_repository *repo)\r\n{\r\n\tgit_vector ref_list;\r\n\r\n\tassert(array && repo);\r\n\r\n\tarray->strings = NULL;\r\n\tarray->count = 0;\r\n\r\n\tif (git_vector_init(&ref_list, 8, NULL) < 0)\r\n\t\treturn -1;\r\n\r\n\tif (git_reference_foreach_name(\r\n\t\t\trepo, &cb__reflist_add, (void *)&ref_list) < 0) {\r\n\t\tgit_vector_free(&ref_list);\r\n\t\treturn -1;\r\n\t}\r\n\r\n\tarray->strings = (char **)git_vector_detach(&array->count, NULL, &ref_list);\r\n\r\n\treturn 0;\r\n}\r\n\r\nstatic int is_valid_ref_char(char ch)\r\n{\r\n\tif ((unsigned) ch <= ' ')\r\n\t\treturn 0;\r\n\r\n\tswitch (ch) {\r\n\tcase '~':\r\n\tcase '^':\r\n\tcase ':':\r\n\tcase '\\\\':\r\n\tcase '?':", "\r\n\tcase '[':\r\n\tcase '*':\r\n\t\treturn 0;\r\n\tdefault:\r\n\t\treturn 1;\r\n\t}\r\n}\r\n\r\nstatic int ensure_segment_validity(const char *name)\r\n{\r\n\tconst char *current = name;\r\n\tchar prev = '\\0';\r\n\tconst int lock_len = (int)strlen(GIT_FILELOCK_EXTENSION);\r\n\tint segment_len;\r\n\r\n\tif (*current == '.')", "\r\n\t\treturn -1; /* Refname starts with \".\" */", "\r\n\r\n\tfor (current = name; ; current++) {\r\n\t\tif (*current == '\\0' || *current == '/')\r\n\t\t\tbreak;\r\n\r\n\t\tif (!", "is_valid_ref_char(*current))\r\n\t\t\treturn -1; /* Illegal character in refname */\r\n\r\n\t\tif (prev == '.' && *", "current == '.')", "\r\n\t\t\treturn -1; /* Refname contains \"..\" */\r\n\r\n\t\tif (prev == '@' && *current == '{')\r\n\t\t\treturn -1; /* Refname contains \"@{\" */\r\n\r\n\t\tprev = *current;\r\n\t}\r\n\r\n\tsegment_len = (int)(current - name);\r\n\r\n\t/* A refname component can not end with \".lock\" */\r\n\tif (segment_len >= lock_len &&\r\n\t\t!", "memcmp(current - lock_len, GIT_FILELOCK_EXTENSION, lock_len))\r\n\t\t\treturn -1;\r\n\r\n\treturn segment_len;\r\n}\r\n\r\nstatic bool is_all_caps_and_underscore(const char *name, size_t len)\r\n{\r\n\tsize_t i;\r\n\tchar c;\r\n\r\n\tassert(name && len > 0);\r\n\r\n\tfor (i = 0; i < len; i++)\r\n\t{\r\n\t\tc = name[i];\r\n\t\tif ((c < 'A' || c > 'Z') && c !", "= '_')\r\n\t\t\treturn false;\r\n\t}\r\n\r\n\tif (*name == '_' || name[len - 1] == '_')\r\n\t\treturn false;\r\n\r\n\treturn true;\r\n}\r\n\r\n/* Inspired from https://github.com/git/git/blob/f06d47e7e0d9db709ee204ed13a8a7486149f494/refs.c#L36-100 */\r\nint git_reference__normalize_name(\r\n\tgit_buf *buf,\r\n\tconst char *name,\r\n\tunsigned int flags)\r\n{\r\n\tconst char *current;\r\n\tint segment_len, segments_count = 0, error = GIT_EINVALIDSPEC;\r\n\tunsigned int process_flags;\r\n\tbool normalize = (buf !", "= NULL);\r\n\tbool validate = (flags & GIT_REF_FORMAT__VALIDATION_DISABLE) == 0;\r\n\r\n#ifdef GIT_USE_ICONV\r\n\tgit_path_iconv_t ic = GIT_PATH_ICONV_INIT;\r\n#endif\r\n\r\n\tassert(name);\r\n\r\n\tprocess_flags = flags;\r\n\tcurrent = (char *)name;\r\n\r\n\tif (validate && *current == '/')\r\n\t\tgoto cleanup;\r\n\r\n\tif (normalize)\r\n\t\tgit_buf_clear(buf);\r\n\r\n#ifdef GIT_USE_ICONV\r\n\tif ((flags & GIT_REF_FORMAT__PRECOMPOSE_UNICODE) !", "= 0) {\r\n\t\tsize_t namelen = strlen(current);\r\n\t\tif ((error = git_path_iconv_init_precompose(&ic)) < 0 ||\r\n\t\t\t(error = git_path_iconv(&ic, &current, &namelen)) < 0)\r\n\t\t\tgoto cleanup;\r\n\t\terror = GIT_EINVALIDSPEC;\r\n\t}\r\n#endif\r\n\r\n\tif (!", "validate) {\r\n\t\tgit_buf_sets(buf, current);\r\n\r\n\t\terror = git_buf_oom(buf) ? ", "-1 : 0;\r\n\t\tgoto cleanup;\r\n\t}\r\n\r\n\twhile (true) {\r\n\t\tsegment_len = ensure_segment_validity(current);\r\n\t\tif (segment_len < 0) {\r\n\t\t\tif ((process_flags & GIT_REF_FORMAT_REFSPEC_PATTERN) &&\r\n\t\t\t\t\tcurrent[0] == '*' &&\r\n\t\t\t\t\t(current[1] == '\\0' || current[1] == '/')) {\r\n\t\t\t\t/* Accept one wildcard as a full refname component. */", "\r\n\t\t\t\tprocess_flags &= ~GIT_REF_FORMAT_REFSPEC_PATTERN;\r\n\t\t\t\tsegment_len = 1;\r\n\t\t\t} else\r\n\t\t\t\tgoto cleanup;\r\n\t\t}\r\n\r\n\t\tif (segment_len > 0) {\r\n\t\t\tif (normalize) {\r\n\t\t\t\tsize_t cur_len = git_buf_len(buf);\r\n\r\n\t\t\t\tgit_buf_joinpath(buf, git_buf_cstr(buf), current);\r\n\t\t\t\tgit_buf_truncate(buf,\r\n\t\t\t\t\tcur_len + segment_len + (segments_count ? ", "1 : 0));\r\n\r\n\t\t\t\tif (git_buf_oom(buf)) {\r\n\t\t\t\t\terror = -1;\r\n\t\t\t\t\tgoto cleanup;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\tsegments_count++;\r\n\t\t}\r\n\r\n\t\t/* No empty segment is allowed when not normalizing */\r\n\t\tif (segment_len == 0 && !", "normalize)\r\n\t\t\tgoto cleanup;\r\n\r\n\t\tif (current[segment_len] == '\\0')\r\n\t\t\tbreak;\r\n\r\n\t\tcurrent += segment_len + 1;\r\n\t}\r\n\r\n\t/* A refname can not be empty */\r\n\tif (segment_len == 0 && segments_count == 0)\r\n\t\tgoto cleanup;\r\n\r\n\t/* A refname can not end with \".\" */", "\r\n\tif (current[segment_len - 1] == '.')", "\r\n\t\tgoto cleanup;\r\n\r\n\t/* A refname can not end with \"/\" */\r\n\tif (current[segment_len - 1] == '/')\r\n\t\tgoto cleanup;\r\n\r\n\tif ((segments_count == 1 ) && !(", "flags & GIT_REF_FORMAT_ALLOW_ONELEVEL))\r\n\t\tgoto cleanup;\r\n\r\n\tif ((segments_count == 1 ) &&\r\n\t !(", "flags & GIT_REF_FORMAT_REFSPEC_SHORTHAND) &&\r\n\t\t!(", "is_all_caps_and_underscore(name, (size_t)segment_len) ||\r\n\t\t\t((flags & GIT_REF_FORMAT_REFSPEC_PATTERN) && !", "strcmp(\"*\", name))))\r\n\t\t\tgoto cleanup;\r\n\r\n\tif ((segments_count > 1)\r\n\t\t&& (is_all_caps_and_underscore(name, strchr(name, '/') - name)))\r\n\t\t\tgoto cleanup;\r\n\r\n\terror = 0;\r\n\r\ncleanup:\r\n\tif (error == GIT_EINVALIDSPEC)\r\n\t\tgiterr_set(\r\n\t\t\tGITERR_REFERENCE,\r\n\t\t\t\"the given reference name '%s' is not valid\", name);\r\n\r\n\tif (error && normalize)\r\n\t\tgit_buf_free(buf);\r\n\r\n#ifdef GIT_USE_ICONV\r\n\tgit_path_iconv_clear(&ic);\r\n#endif\r\n\r\n\treturn error;\r\n}\r\n\r\nint git_reference_normalize_name(\r\n\tchar *buffer_out,\r\n\tsize_t buffer_size,\r\n\tconst char *name,\r\n\tunsigned int flags)\r\n{\r\n\tgit_buf buf = GIT_BUF_INIT;\r\n\tint error;\r\n\r\n\tif ((error = git_reference__normalize_name(&buf, name, flags)) < 0)\r\n\t\tgoto cleanup;\r\n\r\n\tif (git_buf_len(&buf) > buffer_size - 1) {\r\n\t\tgiterr_set(\r\n\t\tGITERR_REFERENCE,\r\n\t\t\"the provided buffer is too short to hold the normalization of '%s'\", name);\r\n\t\terror = GIT_EBUFS;\r\n\t\tgoto cleanup;\r\n\t}\r\n\r\n\tgit_buf_copy_cstr(buffer_out, buffer_size, &buf);\r\n\r\n\terror = 0;\r\n\r\ncleanup:\r\n\tgit_buf_free(&buf);\r\n\treturn error;\r\n}\r\n\r\n#define GIT_REF_TYPEMASK (GIT_REF_OID | GIT_REF_SYMBOLIC)\r\n\r\nint git_reference_cmp(\r\n\tconst git_reference *ref1,\r\n\tconst git_reference *ref2)\r\n{\r\n\tgit_ref_t type1, type2;\r\n\tassert(ref1 && ref2);\r\n\r\n\ttype1 = git_reference_type(ref1);\r\n\ttype2 = git_reference_type(ref2);\r\n\r\n\t/* let's put symbolic refs before OIDs */\r\n\tif (type1 !", "= type2)\r\n\t\treturn (type1 == GIT_REF_SYMBOLIC) ? ", "-1 : 1;\r\n\r\n\tif (type1 == GIT_REF_SYMBOLIC)\r\n\t\treturn strcmp(ref1->target.symbolic, ref2->target.symbolic);\r\n\r\n\treturn git_oid__cmp(&ref1->target.oid, &ref2->target.oid);\r\n}\r\n\r\n/**\r\n * Get the end of a chain of references. ", "If the final one is not\r\n * found, we return the reference just before that.", "\r\n */\r\nstatic int get_terminal(git_reference **out, git_repository *repo, const char *ref_name, int nesting)\r\n{\r\n\tgit_reference *ref;\r\n\tint error = 0;\r\n\r\n\tif (nesting > MAX_NESTING_LEVEL) {\r\n\t\tgiterr_set(GITERR_REFERENCE, \"reference chain too deep (%d)\", nesting);\r\n\t\treturn GIT_ENOTFOUND;\r\n\t}\r\n\r\n\t/* set to NULL to let the caller know that they're at the end of the chain */\r\n\tif ((error = git_reference_lookup(&ref, repo, ref_name)) < 0) {\r\n\t\t*out = NULL;\r\n\t\treturn error;\r\n\t}\r\n\r\n\tif (git_reference_type(ref) == GIT_REF_OID) {\r\n\t\t*out = ref;\r\n\t\terror = 0;\r\n\t} else {\r\n\t\terror = get_terminal(out, repo, git_reference_symbolic_target(ref), nesting + 1);\r\n\t\tif (error == GIT_ENOTFOUND && !*", "out)\r\n\t\t\t*out = ref;\r\n\t\telse\r\n\t\t\tgit_reference_free(ref);\r\n\t}\r\n\r\n\treturn error;\r\n}\r\n\r\n/*\r\n * Starting with the reference given by `ref_name`, follows symbolic\r\n * references until a direct reference is found and updated the OID\r\n * on that direct reference to `oid`.", "\r\n */\r\nint git_reference__update_terminal(\r\n\tgit_repository *repo,\r\n\tconst char *ref_name,\r\n\tconst git_oid *oid,\r\n\tconst git_signature *sig,\r\n\tconst char *log_message)\r\n{\r\n\tgit_reference *ref = NULL, *ref2 = NULL;\r\n\tgit_signature *who = NULL;\r\n\tconst git_signature *to_use;\r\n\tint error = 0;\r\n\r\n\tif (!", "sig && (error = git_reference__log_signature(&who, repo)) < 0)\r\n\t\treturn error;\r\n\r\n\tto_use = sig ? ", "sig : who;\r\n\terror = get_terminal(&ref, repo, ref_name, 0);\r\n\r\n\t/* found a dangling symref */\r\n\tif (error == GIT_ENOTFOUND && ref) {\r\n\t\tassert(git_reference_type(ref) == GIT_REF_SYMBOLIC);\r\n\t\tgiterr_clear();\r\n\t\terror = reference__create(&ref2, repo, ref->target.symbolic, oid, NULL, 0, to_use,\r\n\t\t\t\t\t log_message, NULL, NULL);\r\n\t} else if (error == GIT_ENOTFOUND) {\r\n\t\tgiterr_clear();\r\n\t\terror = reference__create(&ref2, repo, ref_name, oid, NULL, 0, to_use,\r\n\t\t\t\t\t log_message, NULL, NULL);\r\n\t} else if (error == 0) {\r\n\t\tassert(git_reference_type(ref) == GIT_REF_OID);\r\n\t\terror = reference__create(&ref2, repo, ref->name, oid, NULL, 1, to_use,\r\n\t\t\t\t\t log_message, &ref->target.oid, NULL);\r\n\t}\r\n\r\n\tgit_reference_free(ref2);\r\n\tgit_reference_free(ref);\r\n\tgit_signature_free(who);\r\n\treturn error;\r\n}\r\n\r\nstatic const char *commit_type(const git_commit *commit)\r\n{\r\n\tunsigned int count = git_commit_parentcount(commit);\r\n\r\n\tif (count >= 2)\r\n\t\treturn \" (merge)\";\r\n\telse if (count == 0)\r\n\t\treturn \" (initial)\";\r\n\telse\r\n\t\treturn \"\";\r\n}\r\n\r\nint git_reference__update_for_commit(\r\n\tgit_repository *repo,\r\n\tgit_reference *ref,\r\n\tconst char *ref_name,\r\n\tconst git_oid *id,\r\n\tconst char *operation)\r\n{\r\n\tgit_reference *ref_new = NULL;\r\n\tgit_commit *commit = NULL;\r\n\tgit_buf reflog_msg = GIT_BUF_INIT;\r\n\tconst git_signature *who;\r\n\tint error;\r\n\r\n\tif ((error = git_commit_lookup(&commit, repo, id)) < 0 ||\r\n\t\t(error = git_buf_printf(&reflog_msg, \"%s%s: %s\",\r\n\t\t\toperation ? ", "operation : \"commit\",\r\n\t\t\tcommit_type(commit),\r\n\t\t\tgit_commit_summary(commit))) < 0)\r\n\t\tgoto done;\r\n\r\n\twho = git_commit_committer(commit);\r\n\r\n\tif (ref) {\r\n\t\tif ((error = ensure_is_an_updatable_direct_reference(ref)) < 0)\r\n\t\t\treturn error;\r\n\r\n\t\terror = reference__create(&ref_new, repo, ref->name, id, NULL, 1, who,\r\n\t\t\t\t\t git_buf_cstr(&reflog_msg), &ref->target.oid, NULL);\r\n\t}\r\n\telse\r\n\t\terror = git_reference__update_terminal(\r\n\t\t\trepo, ref_name, id, who, git_buf_cstr(&reflog_msg));\r\n\r\ndone:\r\n\tgit_reference_free(ref_new);\r\n\tgit_buf_free(&reflog_msg);\r\n\tgit_commit_free(commit);\r\n\treturn error;\r\n}\r\n\r\nint git_reference_has_log(git_repository *repo, const char *refname)\r\n{\r\n\tint error;\r\n\tgit_refdb *refdb;\r\n\r\n\tassert(repo && refname);\r\n\r\n\tif ((error = git_repository_refdb__weakptr(&refdb, repo)) < 0)\r\n\t\treturn error;\r\n\r\n\treturn git_refdb_has_log(refdb, refname);\r\n}\r\n\r\nint git_reference_ensure_log(git_repository *repo, const char *refname)\r\n{\r\n\tint error;\r\n\tgit_refdb *refdb;\r\n\r\n\tassert(repo && refname);\r\n\r\n\tif ((error = git_repository_refdb__weakptr(&refdb, repo)) < 0)\r\n\t\treturn error;\r\n\r\n\treturn git_refdb_ensure_log(refdb, refname);\r\n}\r\n\r\nint git_reference__is_branch(const char *ref_name)\r\n{\r\n\treturn git__prefixcmp(ref_name, GIT_REFS_HEADS_DIR) == 0;\r\n}\r\n\r\nint git_reference_is_branch(const git_reference *ref)\r\n{\r\n\tassert(ref);\r\n\treturn git_reference__is_branch(ref->name);\r\n}\r\n\r\nint git_reference__is_remote(const char *ref_name)\r\n{\r\n\treturn git__prefixcmp(ref_name, GIT_REFS_REMOTES_DIR) == 0;\r\n}\r\n\r\nint git_reference_is_remote(const git_reference *ref)\r\n{\r\n\tassert(ref);\r\n\treturn git_reference__is_remote(ref->name);\r\n}\r\n\r\nint git_reference__is_tag(const char *ref_name)\r\n{\r\n\treturn git__prefixcmp(ref_name, GIT_REFS_TAGS_DIR) == 0;\r\n}\r\n\r\nint git_reference_is_tag(const git_reference *ref)\r\n{\r\n\tassert(ref);\r\n\treturn git_reference__is_tag(ref->name);\r\n}\r\n\r\nint git_reference__is_note(const char *ref_name)\r\n{\r\n\treturn git__prefixcmp(ref_name, GIT_REFS_NOTES_DIR) == 0;\r\n}\r\n\r\nint git_reference_is_note(const git_reference *ref)\r\n{\r\n\tassert(ref);\r\n\treturn git_reference__is_note(ref->name);\r\n}\r\n\r\nstatic int peel_error(int error, git_reference *ref, const char* msg)\r\n{\r\n\tgiterr_set(\r\n\t\tGITERR_INVALID,\r\n\t\t\"the reference '%s' cannot be peeled - %s\", git_reference_name(ref), msg);\r\n\treturn error;\r\n}\r\n\r\nint git_reference_peel(\r\n\tgit_object **peeled,\r\n\tgit_reference *ref,\r\n\tgit_otype target_type)\r\n{\r\n\tgit_reference *resolved = NULL;\r\n\tgit_object *target = NULL;\r\n\tint error;\r\n\r\n\tassert(ref);\r\n\r\n\tif (ref->type == GIT_REF_OID) {\r\n\t\tresolved = ref;\r\n\t} else {\r\n\t\tif ((error = git_reference_resolve(&resolved, ref)) < 0)\r\n\t\t\treturn peel_error(error, ref, \"Cannot resolve reference\");\r\n\t}\r\n\r\n\t/*\r\n\t * If we try to peel an object to a tag, we cannot use\r\n\t * the fully peeled object, as that will always resolve\r\n\t * to a commit. ", "So we only want to use the peeled value\r\n\t * if it is not zero and the target is not a tag.", "\r\n\t */\r\n\tif (target_type !", "= GIT_OBJ_TAG && !", "git_oid_iszero(&resolved->peel)) {\r\n\t\terror = git_object_lookup(&target,\r\n\t\t\tgit_reference_owner(ref), &resolved->peel, GIT_OBJ_ANY);\r\n\t} else {\r\n\t\terror = git_object_lookup(&target,\r\n\t\t\tgit_reference_owner(ref), &resolved->target.oid, GIT_OBJ_ANY);\r\n\t}\r\n\r\n\tif (error < 0) {\r\n\t\tpeel_error(error, ref, \"Cannot retrieve reference target\");\r\n\t\tgoto cleanup;\r\n\t}\r\n\r\n\tif (target_type == GIT_OBJ_ANY && git_object_type(target) !", "= GIT_OBJ_TAG)\r\n\t\terror = git_object_dup(peeled, target);\r\n\telse\r\n\t\terror = git_object_peel(peeled, target, target_type);\r\n\r\ncleanup:\r\n\tgit_object_free(target);\r\n\r\n\tif (resolved !", "= ref)\r\n\t\tgit_reference_free(resolved);\r\n\r\n\treturn error;\r\n}\r\n\r\nint git_reference__is_valid_name(const char *refname, unsigned int flags)\r\n{\r\n\tif (git_reference__normalize_name(NULL, refname, flags) < 0) {\r\n\t\tgiterr_clear();\r\n\t\treturn false;\r\n\t}\r\n\r\n\treturn true;\r\n}\r\n\r\nint git_reference_is_valid_name(const char *refname)\r\n{\r\n\treturn git_reference__is_valid_name(refname, GIT_REF_FORMAT_ALLOW_ONELEVEL);\r\n}\r\n\r\nconst char *git_reference__shorthand(const char *name)\r\n{\r\n\tif (!", "git__prefixcmp(name, GIT_REFS_HEADS_DIR))\r\n\t\treturn name + strlen(GIT_REFS_HEADS_DIR);\r\n\telse if (!", "git__prefixcmp(name, GIT_REFS_TAGS_DIR))\r\n\t\treturn name + strlen(GIT_REFS_TAGS_DIR);\r\n\telse if (!", "git__prefixcmp(name, GIT_REFS_REMOTES_DIR))\r\n\t\treturn name + strlen(GIT_REFS_REMOTES_DIR);\r\n\telse if (!", "git__prefixcmp(name, GIT_REFS_DIR))\r\n\t\treturn name + strlen(GIT_REFS_DIR);\r\n\r\n\t/* No shorthands are avaiable, so just return the name */\r\n\treturn name;\r\n}\r\n\r\nconst char *git_reference_shorthand(const git_reference *ref)\r\n{\r\n\treturn git_reference__shorthand(ref->name);\r\n}\r\n" ]
{ "pile_set_name": "Github" }
[ 0, 0, 0.00980392156862745, 0, 0.01335113484646195, 0.014084507042253521, 0.012345679012345678, 0.01639344262295082, 0.01912568306010929, 0.0196078431372549, 0.012552301255230125, 0.014084507042253521, 0.011363636363636364, 0.004712041884816754, 0.014705882352941176, 0.005376344086021506, 0.004, 0.03333333333333333, 0.008670520231213872, 0.01327433628318584, 0, 0, 0.005076142131979695, 0.01764705882352941, 0.010256410256410256, 0.005333333333333333, 0.04081632653061224, 0.006422208411021338, 0, 0.004634994206257242, 0.004697592483852026, 0, 0, 0, 0, 0, 0.005863539445628998, 0, 0.022727272727272728, 0, 0.009615384615384616, 0, 0.010452961672473868, 0.009554140127388535, 0.004319654427645789, 0.007537688442211055, 0.008658008658008658, 0, 0.006211180124223602, 0, 0.014423076923076924, 0.011673151750972763, 0, 0.013245033112582781, 0.020202020202020204, 0.02, 0.009345794392523364, 0.007380073800738007, 0, 0.0045045045045045045, 0, 0.0043541364296081275, 0, 0.01, 0.010101010101010102, 0.010259917920656635, 0.005279831045406547, 0, 0, 0.05555555555555555, 0.011848341232227487, 0, 0, 0.010101010101010102, 0, 0, 0.003663003663003663 ]
0.008163
5
[ { "analysis_explanation": null, "end": 32, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 25 }, { "analysis_explanation": null, "end": 1333, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1328 }, { "analysis_explanation": null, "end": 1616, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1613 }, { "analysis_explanation": null, "end": 1700, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1695 }, { "analysis_explanation": null, "end": 1811, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1808 }, { "analysis_explanation": null, "end": 3884, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3860 }, { "analysis_explanation": null, "end": 3989, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3976 }, { "analysis_explanation": null, "end": 4045, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4041 }, { "analysis_explanation": null, "end": 4075, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4061 }, { "analysis_explanation": null, "end": 4334, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4300 }, { "analysis_explanation": null, "end": 4541, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4526 }, { "analysis_explanation": null, "end": 4561, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4548 }, { "analysis_explanation": null, "end": 4872, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4851 }, { "analysis_explanation": null, "end": 5186, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5177 }, { "analysis_explanation": null, "end": 5706, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5678 }, { "analysis_explanation": null, "end": 5812, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5800 }, { "analysis_explanation": null, "end": 5918, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5914 }, { "analysis_explanation": null, "end": 6200, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6187 }, { "analysis_explanation": null, "end": 6238, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6234 }, { "analysis_explanation": null, "end": 6321, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6308 }, { "analysis_explanation": null, "end": 6542, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6538 }, { "analysis_explanation": null, "end": 6641, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6629 }, { "analysis_explanation": null, "end": 6863, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6850 }, { "analysis_explanation": null, "end": 6974, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6961 }, { "analysis_explanation": null, "end": 7201, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7197 }, { "analysis_explanation": null, "end": 7308, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7292 }, { "analysis_explanation": null, "end": 7554, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 7550 }, { "analysis_explanation": null, "end": 8949, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8946 }, { "analysis_explanation": null, "end": 9118, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9105 }, { "analysis_explanation": null, "end": 9501, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9498 }, { "analysis_explanation": null, "end": 9579, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9554 }, { "analysis_explanation": null, "end": 9584, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9581 }, { "analysis_explanation": null, "end": 9651, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9648 }, { "analysis_explanation": null, "end": 9767, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9730 }, { "analysis_explanation": null, "end": 9772, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 9769 }, { "analysis_explanation": null, "end": 10053, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10007 }, { "analysis_explanation": null, "end": 10764, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 10754 }, { "analysis_explanation": null, "end": 11781, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 11739 }, { "analysis_explanation": null, "end": 12700, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 12697 }, { "analysis_explanation": null, "end": 13633, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13588 }, { "analysis_explanation": null, "end": 13867, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 13845 }, { "analysis_explanation": null, "end": 14016, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14002 }, { "analysis_explanation": null, "end": 14252, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14248 }, { "analysis_explanation": null, "end": 14337, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14333 }, { "analysis_explanation": null, "end": 14378, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14355 }, { "analysis_explanation": null, "end": 14491, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14487 }, { "analysis_explanation": null, "end": 14734, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 14730 }, { "analysis_explanation": null, "end": 15029, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 15016 }, { "analysis_explanation": null, "end": 16836, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16812 }, { "analysis_explanation": null, "end": 17380, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17342 }, { "analysis_explanation": null, "end": 17863, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17833 }, { "analysis_explanation": null, "end": 17949, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 17911 }, { "analysis_explanation": null, "end": 19691, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 19690 }, { "analysis_explanation": null, "end": 20994, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 20972 }, { "analysis_explanation": null, "end": 21119, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21109 }, { "analysis_explanation": null, "end": 21198, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21193 }, { "analysis_explanation": null, "end": 21666, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21650 }, { "analysis_explanation": null, "end": 21994, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 21990 }, { "analysis_explanation": null, "end": 22294, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22290 }, { "analysis_explanation": null, "end": 22331, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22315 }, { "analysis_explanation": null, "end": 22445, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22441 }, { "analysis_explanation": null, "end": 23150, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23146 }, { "analysis_explanation": null, "end": 23310, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23306 }, { "analysis_explanation": null, "end": 23498, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23494 }, { "analysis_explanation": null, "end": 23590, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23586 }, { "analysis_explanation": null, "end": 23687, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23683 }, { "analysis_explanation": null, "end": 23781, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23777 }, { "analysis_explanation": null, "end": 23999, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 23993 }, { "analysis_explanation": null, "end": 24022, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24018 }, { "analysis_explanation": null, "end": 24137, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24133 }, { "analysis_explanation": null, "end": 24242, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24226 }, { "analysis_explanation": null, "end": 24679, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24675 }, { "analysis_explanation": null, "end": 24770, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24754 }, { "analysis_explanation": null, "end": 24881, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 24877 }, { "analysis_explanation": null, "end": 26759, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 26756 }, { "analysis_explanation": null, "end": 27051, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27048 }, { "analysis_explanation": null, "end": 27323, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27320 }, { "analysis_explanation": null, "end": 27489, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27486 }, { "analysis_explanation": null, "end": 27677, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 27674 }, { "analysis_explanation": null, "end": 28602, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28598 }, { "analysis_explanation": null, "end": 28818, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 28817 }, { "analysis_explanation": null, "end": 31830, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 31826 }, { "analysis_explanation": null, "end": 32027, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32016 }, { "analysis_explanation": null, "end": 32190, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 32152 }, { "analysis_explanation": null, "end": 21479, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.6, "start": 21392 }, { "analysis_explanation": null, "end": 1437, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1428 }, { "analysis_explanation": null, "end": 2491, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2482 }, { "analysis_explanation": null, "end": 2808, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2799 }, { "analysis_explanation": null, "end": 3139, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3130 }, { "analysis_explanation": null, "end": 5263, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 5254 }, { "analysis_explanation": null, "end": 5986, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 5974 }, { "analysis_explanation": null, "end": 6072, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 6060 }, { "analysis_explanation": null, "end": 6199, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 6187 }, { "analysis_explanation": null, "end": 6320, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 6308 }, { "analysis_explanation": null, "end": 8814, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 8805 }, { "analysis_explanation": null, "end": 13768, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 13759 }, { "analysis_explanation": null, "end": 14437, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 14428 }, { "analysis_explanation": null, "end": 15809, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 15799 }, { "analysis_explanation": null, "end": 16655, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 16646 }, { "analysis_explanation": null, "end": 25473, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 25464 }, { "analysis_explanation": null, "end": 25496, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 25487 }, { "analysis_explanation": null, "end": 27312, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 27303 }, { "analysis_explanation": null, "end": 21475, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 21472 } ]
[ "Physicians' recognition of the symptoms experienced by HIV patients: how reliable?", "\nTo assess how well physicians recognize common symptoms in HIV patients and identify factors associated with symptom recognition, a multicenter cross-sectional survey was performed in a random sample of 118 hospitalized and 172 ambulatory HIV patients, and their attending physicians. ", "Patients' reports of 16 different symptoms were compared to physicians' reports of whether each symptom was present and/or specific treatments prescribed. ", "Overall, fatigue, anxiety, skin problems, fever, and weight loss were more often recognized by physicians than other symptoms. ", "Agreement between patients and physicians was poor to moderate, with Kappa statistics ranging from 0.17 (dry mouth) to 0.58 (fever). ", "Recognition was independently more likely for ambulatory patients (adjusted odds ratio 1.69, P < 0.001) and for patients seen as sicker (adjusted odds ratio 1.88, P < 0.001). ", "Appropriate symptom management requires improved symptom recognition. ", "More systematic clinical examinations, including attentive patient interview, are needed." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0.007518796992481203, 0.011428571428571429, 0, 0 ]
0.002368
5
[]
[ "Q:\n\nOBJ Model Renderering Gaps\n\nWhen I render a OBJ Wavefront model which I parse using a parser that I built myself, I get the following result when rendering:\n\nAre the gaps that are present normal or is it just from faulty rendering code?", "\nHere is the rendering code:\nglPushMatrix();\nglColor3f(1.0f, 1.0f, 1.0f);\nglScaled(scale, scale, scale);\n\nglPolygonMode(GL_FRONT_AND_BACK, GL_FILL);\n\nfor (int i = 0; i < vertices_indexes.size()-3; i+=3) {\n glBegin(GL_TRIANGLE_FAN);\n if (is_normals) glNormal3f(normals.at(normals_indexes[i]).x, normals.at(normals_indexes[i]).y, normals.at(normals_indexes[i]).z);\n glVertex3f(vertices.at(vertices_indexes[i]).x, vertices.at(vertices_indexes[i]).y, vertices.at(vertices_indexes[i]).z);\n\n if (is_normals) glNormal3f(normals.at(normals_indexes[i+1]).x, normals.at(normals_indexes[i+1]).y, normals.at(normals_indexes[i+1]).z);\n glVertex3f(vertices.at(vertices_indexes[i + 1]).x, vertices.at(vertices_indexes[i + 1]).y, vertices.at(vertices_indexes[i + 1]).z);\n\n if (is_normals) glNormal3f(normals.at(normals_indexes[i+2]).x, normals.at(normals_indexes[i+2]).y, normals.at(normals_indexes[i+2]).z);\n glVertex3f(vertices.at(vertices_indexes[i + 2]).x, vertices.at(vertices_indexes[i + 2]).y, vertices.at(vertices_indexes[i + 2]).z);\n glEnd();\n}\n\nglPopMatrix();\n\nA:\n\nHave you checked that your model is created with triangles and not quads? ", "Most models you find will come rendered in quads by default, so you can either load it up in a 3D program (like Blender or Maya) and convert the mesh to triangles (Ctrl+T in Blender), or change your parser to handle quads. ", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.006773920406435224, 0.004484304932735426, 0 ]
0.002815
5
[ { "analysis_explanation": null, "end": 441, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 437 }, { "analysis_explanation": null, "end": 429, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 419 }, { "analysis_explanation": null, "end": 520, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 510 }, { "analysis_explanation": null, "end": 554, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 544 }, { "analysis_explanation": null, "end": 588, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 578 }, { "analysis_explanation": null, "end": 643, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 632 }, { "analysis_explanation": null, "end": 679, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 668 }, { "analysis_explanation": null, "end": 715, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 704 }, { "analysis_explanation": null, "end": 787, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 777 }, { "analysis_explanation": null, "end": 823, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 813 }, { "analysis_explanation": null, "end": 859, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 849 }, { "analysis_explanation": null, "end": 916, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 905 }, { "analysis_explanation": null, "end": 956, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 945 }, { "analysis_explanation": null, "end": 996, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 985 }, { "analysis_explanation": null, "end": 1072, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1062 }, { "analysis_explanation": null, "end": 1108, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1098 }, { "analysis_explanation": null, "end": 1144, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1134 }, { "analysis_explanation": null, "end": 1201, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1190 }, { "analysis_explanation": null, "end": 1241, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1230 }, { "analysis_explanation": null, "end": 1281, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1270 } ]
[ "Caregiver-reported antiretroviral therapy non-adherence during the first week and after a month of treatment initiation among children diagnosed with HIV in Ethiopia.", "\nTo achieve optimal virologic suppression for children undergoing antiretroviral therapy (ART), adherence must be excellent. ", "This is defined as taking more than 95% of their prescribed doses. ", "To our knowledge, no study in Ethiopia has evaluated the level of treatment adherence at the beginning of the child's treatment. ", "Our aim was therefore to evaluate caregiver-reported ART non-adherence among children and any predictors for this during the early course of treatment. ", "We conducted a prospective cohort study of 306 children with HIV in eight health facilities in Ethiopia who were registered at ART clinics between 20 December 2014 and 20 April 2015. ", "The adherence rate reported by caregivers during the first week and after a month of treatment initiation was 92.8% and 93.8%, respectively. ", "Our findings highlight important predictors of non-adherence. ", "Children whose caregivers were not undergoing HIV treatment and care themselves were less likely to be non-adherent during the first week of treatment (aOR = 0.17, 95% CI: 0.04, 0.71) and the children whose caregivers did not use a medication reminder after one month of treatment initiation (aOR = 5.21, 95% CI: 2.23, 12.16) were more likely to miss the prescribed dose. ", "Moreover, after one month of the treatment initiation, those receiving protease inhibitor (LPV/r) or ABC-based treatment regimens were more likely to be non-adherent (aOR = 12.32, 95% CI: 3.25, 46.67). ", "To promote treatment adherence during ART initiation in children, particular emphasis needs to be placed on a baseline treatment regimen and ways to issue reminders about the child's medication to both the health care system and caregivers. ", "Further, large scale studies using a combination of adherence measuring methods upon treatment initiation are needed to better define the magnitude and predictors of ART non-adherence in resource-limited settings." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.008, 0, 0, 0.006578947368421052, 0.00546448087431694, 0, 0, 0.005376344086021506, 0.01485148514851485, 0.004149377593360996, 0.004694835680751174 ]
0.004093
5
[ { "analysis_explanation": null, "end": 77, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 63 }, { "analysis_explanation": null, "end": 95, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88 }, { "analysis_explanation": null, "end": 165, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 157 }, { "analysis_explanation": null, "end": 396, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 388 }, { "analysis_explanation": null, "end": 742, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 734 }, { "analysis_explanation": null, "end": 802, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 778 }, { "analysis_explanation": null, "end": 820, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 807 }, { "analysis_explanation": null, "end": 885, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 871 }, { "analysis_explanation": null, "end": 903, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 896 }, { "analysis_explanation": null, "end": 1162, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1148 }, { "analysis_explanation": null, "end": 1292, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1283 }, { "analysis_explanation": null, "end": 1422, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1413 } ]
[ "Check out our new site Makeup Addiction\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nForeign exchange student from america In Ewha Womans University" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.005780346820809248 ]
0.00578
5
[ { "analysis_explanation": null, "end": 320, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 313 } ]
[ "Synopsis: “Around the world, black handprints are appearing on doorways, scorched there by winged strangers who have crept through a slit in the sky.", "\n\nIn a dark and dusty shop, a devil’s supply of human teeth grown dangerously low.", "\n\nAnd in the tangled lanes of Prague, a young art student is about to be caught up in a brutal otherwordly war.", "\n\nMeet Karou. ", "She fills her sketchbooks with monsters that may or may not be real; she’s prone to disappearing on mysterious “errands”; she speaks many languages–not all of them human; and her bright blue hair actually grows out of her head that color. ", "Who is she? ", "That is the question that haunts her, and she’s about to find out.", "\n\nWhen one of the strangers–beautiful, haunted Akiva–fixes his fire-colored eyes on her in an alley in Marrakesh, the result is blood and starlight, secrets unveiled, and a star-crossed love whose roots drink deep of a violent past. ", "But will Karou live to regret learning the truth about herself?” (", "Taken from Goodreads)\n\n[divider]\n\nYes I finally decided to pick this book up two months ago when Laini Taylor came into town. ", "I was on my way to the Hachette YA Blogger Night and went, ‘what the heck, might as well start the first chapter before I meet the author!’. ", "So I did, and guess what? ", "Can you guess, can you guess? ", "I was blown away. ", "By the first chapter. ", "Can you believe it, because I couldn’t. ", "I don’t remember the last time the first chapter of a book gripped me so hard, but Daughter of Smoke & Bone (DoSaB) clung on and did not let go.", "\n\nI’m not sure what I can really add to the immense amount of positive reviews out there already for this book and series. ", "I can only reiterate the same messages, and that is: read this book.", "\n\nThere’s something magical about Laini Taylor’s writing – it sucks you in and sings lyrical into your ears until you fall into this deep abyss of love for her characters and world-building. ", "Both are superb. ", "The book follows an artist girl name Karou living in our modern day Prague. ", "She is a normal student who also hides a secret from the rest of the world…she was raised by monsters. ", "Living between two worlds, Karou must juggle her secrets, especially when she’s being sent on errands around the world to collect teeth for her monster guardian Brimstone. ", "When black handprints start appearing on the doors between our world and the world of the monsters, Karou is thrust into the middle of a war between the seraphim and chimaeras. ", "As the secrets begin to reveal themselves, Karou begins to learn who she really is.", "\n\nThe story is fast-paced and brilliantly written. ", "There was not one moment where I thought it dragged, and I definitely did not want it to end. ", "The worlds Laini have built are beautiful and I’m so grateful that she had set her story in Prague and Morocco, two places that are rarely ever featured in the books I read. ", "Having recently been to Prague, prior to reading this book, really helped me imagine the setting properly and I definitely felt more immersed in the world-building as I recognised a lot of the places visited by Karou.", "\n\nThe only negative I had with this book was how insta-lovey Karou and Akiva’s relationship felt at the start. ", "As the story progressed, I came to understand this attraction between them so this wasn’t a major issue at all.", "\n\nI don’t know why I didn’t start this series sooner but I definitely know I will be continuing on with it. ", "The next two books are calling to me from my bookshelf, so I better go and give them some love.", "\n\nJoy is the head honcho of Thoughts By J. Her favourite genres are fantasy, sci-fi, mysteries, and the occasional romance that makes her heart beat faster. ", "You'll find she's quite sporadic with her blog posts, but will definitely find the time to reply to all your comments, and visit your blogs...it's just a matter of when.", "\n\nFollow me on Twitter\n\nDisclaimer\n\nThe books and items reviewed on Thoughts By J are purchased by us unless explicitly specified. ", "We occasionally receive books for review from Australian publishers in exchange for an honest review. ", "Thoughts By J does not receive monetary compensation for our reviews or posts." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0.07142857142857142, 0, 0, 0, 0.004291845493562232, 0.015151515151515152, 0.015873015873015872, 0.0070921985815602835, 0, 0, 0, 0, 0, 0.006944444444444444, 0, 0, 0.005235602094240838, 0, 0.013157894736842105, 0, 0.005813953488372093, 0.005649717514124294, 0.012048192771084338, 0, 0, 0.005747126436781609, 0.004608294930875576, 0.018018018018018018, 0.009009009009009009, 0, 0, 0.006369426751592357, 0, 0.007633587786259542, 0, 0 ]
0.005489
5
[ { "analysis_explanation": null, "end": 265, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 259 }, { "analysis_explanation": null, "end": 351, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 341 }, { "analysis_explanation": null, "end": 721, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 716 }, { "analysis_explanation": null, "end": 781, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 772 }, { "analysis_explanation": null, "end": 916, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 911 }, { "analysis_explanation": null, "end": 1060, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1046 }, { "analysis_explanation": null, "end": 1078, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1066 }, { "analysis_explanation": null, "end": 1751, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1739 }, { "analysis_explanation": null, "end": 1955, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1950 }, { "analysis_explanation": null, "end": 1980, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1966 }, { "analysis_explanation": null, "end": 1987, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1981 }, { "analysis_explanation": null, "end": 2124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2119 }, { "analysis_explanation": null, "end": 2369, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2364 }, { "analysis_explanation": null, "end": 2489, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2484 }, { "analysis_explanation": null, "end": 2684, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2679 }, { "analysis_explanation": null, "end": 2766, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2760 }, { "analysis_explanation": null, "end": 2778, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2771 }, { "analysis_explanation": null, "end": 2872, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2866 }, { "analysis_explanation": null, "end": 3058, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3053 }, { "analysis_explanation": null, "end": 3124, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3119 }, { "analysis_explanation": null, "end": 3134, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3129 }, { "analysis_explanation": null, "end": 3523, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3521 }, { "analysis_explanation": null, "end": 3993, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3983 }, { "analysis_explanation": null, "end": 3782, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 3772 } ]
[ "Photographer's Note\n\nSeries on my trip to CHILE (Santiago de Chile, Valparaiso, Viña del Mar, Valle Nevado and Portillo) and ARGENTINA (Mendoza, Chacras de Coria and Uspallata) - from April 12th to 20th 2014 - #6 !", "\n\nACIMA DAS NUVENS !", "\nABOVE THE CLOUDS!", "\nENCIMA DE LAS NUBES!", "\n\nFlying from SÃO PAULO/SP (BRAZIL) to SANTIAGO DE CHILE included seeing the PARANÁ RIVER, CÓRDOBA and MENDOZA down there in Argentina!", "\nHere, once more, starting to fly over the ANDES, still in Argentina, near MENDOZA!", "\n\nHello Neyvan,\nThis is a remarkably sharp and clear photo through an airplane window. ", "Such pictures don't always look that good. ", "The inclusion of the wing is definitely a fine part of the composition.", "\nKind regards,\nGert\n\nWaaw Neyvan,another spectacular aerial view and the spectacle is truly fantastic,great capture like the others with the best quality of details and colors,i like it! ", "Have a nice week and thanks,Luciano\n\nHi Neyvan,\nIt is a massive mountain range and the air up there is very clear giving excellent shot through the aircraft window. ", "You got also a good seat, a window seat somewhere at the back is my favourite place.", "\nKari\n\nHi Ney,\nbeautiful series of photos from the plane. ", "It allows us to appreciate the Andes from an original perspective. ", "You had great seat which was far enough from the wing to allow such pictures.", "\nVery impressive view!", "\nM" ]
{ "pile_set_name": "Pile-CC" }
[ 0.018691588785046728, 0, 0, 0, 0.014814814814814815, 0, 0, 0, 0, 0.0053475935828877, 0.006060606060606061, 0, 0, 0, 0, 0, 0 ]
0.002642
5
[ { "analysis_explanation": null, "end": 47, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 42 }, { "analysis_explanation": null, "end": 66, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 49 }, { "analysis_explanation": null, "end": 78, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 68 }, { "analysis_explanation": null, "end": 84, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80 }, { "analysis_explanation": null, "end": 106, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 94 }, { "analysis_explanation": null, "end": 119, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 111 }, { "analysis_explanation": null, "end": 143, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136 }, { "analysis_explanation": null, "end": 207, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 184 }, { "analysis_explanation": null, "end": 305, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 299 }, { "analysis_explanation": null, "end": 360, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 355 }, { "analysis_explanation": null, "end": 369, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 362 }, { "analysis_explanation": null, "end": 405, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 396 }, { "analysis_explanation": null, "end": 474, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 465 }, { "analysis_explanation": null, "end": 721, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 704 }, { "analysis_explanation": null, "end": 892, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 881 }, { "analysis_explanation": null, "end": 911, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 904 }, { "analysis_explanation": null, "end": 1138, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1126 }, { "analysis_explanation": null, "end": 1219, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1214 } ]
[ "Q:\n\nShared project with T4 template\n\nI am big fan of shared projects and I want to use T4 templates similarly: reference shared project in different solutions and get access to generated content without hassle.", "\nHow to make T4 templates work in shared projects?", "\n\nA:\n\nSo far the easiest way to organize it is to link .tt files:\n\nMove all templates into separate shared project;\nDo not reference this shared project! ", "This is important and this is why previous step is essential. ", "When shared project is referenced it's not possible to link its files!", "\nLink .tt files from it (drag them with Alt key into target project or use Add - Existing item - Open - combo option \"As link\").", "\nNow you should be able to set their Custom Tool property (in file options) as TextTemplatingFileGenerator in target project (which is not possible in shared project and the reason of all troubles).", "\n\nSeems to work, though it's not really uses shared project feature. ", "Shared project is only used as a container for .tt files (any other project will do, but shared project doesn't produce output, so it's better imho) which are linked to target project.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.009523809523809525, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.000952
5
[ { "analysis_explanation": null, "end": 26, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 24 }, { "analysis_explanation": null, "end": 89, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 87 }, { "analysis_explanation": null, "end": 225, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 223 } ]
[ "Soil mesofauna\n\nSoil Mesofauna are invertebrates between 0.1mm and 2mm in size, which live in the soil or in a leaf litter layer on the soil surface. ", "Members of this group include nematodes, mites, springtails (collembola), proturans, pauropods, rotifers, tardigrades, small araneidae(spiders), pseudoscorpions, opiliones(harvestmen), enchytraeidae such as potworms, insect larvae, small isopods and myriapod They play an important part in the carbon cycle and are likely to be adversely affected by climate change.", "\n\nSoil mesofauna feed on a wide range of materials including other soil animals, microorganisms, animal material, live or decaying plant material, fungi, algae, lichen, spores, and pollen. ", "Species that feed on decaying plant material open drainage and aeration channels in the soil by removing roots. ", "Fecal material of soil mesofauna remains in channels which can be broken down by smaller animals.", "\n\nSoil mesofauna do not have the ability to reshape the soil and, therefore, are forced to use the existing pore space in soil, cavities, or channels for locomotion. ", "Soil Macrofauna, earthworms, termites, ants and some insect larvae, can make the pore spaces and hence can change the soil porosity, one aspect of soil morphology. ", "Mesofauna contribute to habitable pore spaces and account for a small portion of total pore spaces. ", " Clay soils have much smaller particles which reduce pore space. ", " Organic material can fill small pores. ", " Grazing of bacteria by bacterivorous nematodes and flagellates, soil mesofauna living in the pores, may considerably increase Nitrogen mineralization because the bacteria are broken down and the nitrogen is released.", "\n\nIn agricultural soils, most of the biological activity occurs in the top , the soil biomantle or plow layer, while in non-cultivated soils, the most biological activity occurs in top of soil. ", " The top layer is the organic horizon or O horizon, the area of accumulation of animal residues and recognizable plant material. ", " Animal residues are higher in nitrogen than plant residues with respect to the total carbon in the residue. ", " Some Nitrogen fixation is caused by bacteria which consume the amino acids and sugar that are exuded by the plant roots. ", " However, approximately 30% of nitrogen re-mineralization is contributed by soil fauna in agriculture and natural ecosystems. ", " Macro- and mesofauna break down plant residues to release Nitrogen as part of nutrient cycling.", "\n\nReferences \n\nCategory:Soil biology\nCategory:Zoology" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0.00273224043715847, 0, 0, 0, 0, 0.006097560975609756, 0, 0, 0, 0.004608294930875576, 0, 0, 0, 0, 0, 0.010416666666666666, 0 ]
0.001325
5
[ { "analysis_explanation": null, "end": 221, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 211 }, { "analysis_explanation": null, "end": 1346, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1342 } ]
[ "[Cerebral metastases of malignant germinal tumors of the testis].", "\nCerebral metastases occur in 6% of cases of testicular cancer. ", "In our study of 5 cases they occurred during the course of the disease (with a delay of 4-18 months, at the same time as pulmonary and abdominal metastases). ", "The prognosis in these cases is poor (presence of choriocarcinomatous or vitelline elements, advanced stages). ", "The diagnosis is easily established (clinical, encephalogram, scanner); the prognosis is hopeless (5 deaths in 3-90 days). ", "When a metastasis is the first diagnostic clue (one case), the prognosis is slightly better (9 month survival). ", "The incidence of cerebral metastasis is the same now as it was before the introduction of effective chemotherapy in patients who die from testicular cancer, but the death rate from this malignancy has decreased since the introduction of active chemotherapy with cisplatin. ", "Hence, there is no indication for prophylactic treatment for cerebral metastases in patients in remission since metastases only appear in cases which are resistant to treatment." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.015384615384615385, 0, 0, 0, 0, 0, 0.003663003663003663, 0 ]
0.002381
5
[ { "analysis_explanation": null, "end": 228, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 217 }, { "analysis_explanation": null, "end": 518, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 509 }, { "analysis_explanation": null, "end": 621, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 614 } ]
[ "\n773 N.W.2d 725 (2009)\nPaul BLANTON, Petitioner-Appellant,\nv.\nDEPARTMENT OF CORRECTIONS, Respondent-Appellee.", "\nDocket No. ", "139039. ", "COA No. ", "289597.", "\nSupreme Court of Michigan.", "\nOctober 26, 2009.", "\n\nOrder\nOn order of the Court, the application for leave to appeal the March 18, 2009 order of the Court of Appeals is considered, and it is DENIED, because we are not persuaded that the questions presented should be reviewed by this Court.", "\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0.01834862385321101, 0, 0, 0.125, 0, 0, 0, 0.0125, 0 ]
0.017317
5
[ { "analysis_explanation": null, "end": 20, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 16 }, { "analysis_explanation": null, "end": 34, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 22 }, { "analysis_explanation": null, "end": 169, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 161 }, { "analysis_explanation": null, "end": 187, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 171 }, { "analysis_explanation": null, "end": 272, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 254 }, { "analysis_explanation": null, "end": 126, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 120 }, { "analysis_explanation": null, "end": 142, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 136 } ]
[ "1844 in South Africa\n\n__NOTOC__\nThe following lists events that happened during 1844 in South Africa.", "\n\nEvents\n April - Voortrekkers from Natal cross back over the Drakensberg Mountains and settle at Potchefstroom\n Land ownership in the Cape Colony is changed from leasehold to free hold\n The settlement of Victoria West is established\n The Voortrekker leader Hendrik Potgieter settle at Delagoa Bay, Mozambique\n\nBirths\n 5 October - Francis William Reitz, South African lawyer, politician, and statesman, president of the Orange Free State born in Swellendam, Cape Colony.", "\n\nReferences\nSee Years in South Africa for list of References\n\nSouth Africa\nCategory:Years in South Africa" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.009900990099009901, 0.01702127659574468, 0.009433962264150943 ]
0.012119
5
[ { "analysis_explanation": null, "end": 4, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 0 }, { "analysis_explanation": null, "end": 20, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 8 }, { "analysis_explanation": null, "end": 84, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 80 }, { "analysis_explanation": null, "end": 100, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88 }, { "analysis_explanation": null, "end": 130, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 110 }, { "analysis_explanation": null, "end": 141, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 136 }, { "analysis_explanation": null, "end": 183, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 158 }, { "analysis_explanation": null, "end": 246, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 231 }, { "analysis_explanation": null, "end": 318, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 305 }, { "analysis_explanation": null, "end": 375, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 358 }, { "analysis_explanation": null, "end": 397, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 386 }, { "analysis_explanation": null, "end": 428, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 421 }, { "analysis_explanation": null, "end": 452, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431 }, { "analysis_explanation": null, "end": 467, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 454 }, { "analysis_explanation": null, "end": 556, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 546 }, { "analysis_explanation": null, "end": 569, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 558 }, { "analysis_explanation": null, "end": 607, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 595 }, { "analysis_explanation": null, "end": 675, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 663 } ]
[ "Q:\n\nPhp Mail() not sending any emails out?", "\n\nI have a mail function\n $to = \"fahad@somewhere.com\";\n $subject = \"Voucher Number: \".$voucher;\n $message = '<html><body>';\n $message .= '<table rules=\"all\" style=\"border-color: #666;\" cellpadding=\"10\">';\n $message .= \"<tr style='background: #eee;'><td><strong>Voucher#:</strong> </td><td>\" . ", "strip_tags($voucher) . \"", "</td></tr>\";\n $message .= \"<tr><td><strong>Name:</strong> </td><td>\" . ", "strip_tags($name) . \"", "</td></tr>\";\n $message .= \"<tr><td><strong>Phone Number:</strong> </td><td>\" . ", "strip_tags($product) . \"", "</td></tr>\";\n $message .= \"<tr><td><strong>Email:</strong> </td><td>\" . ", "strip_tags($email) . \"", "</td></tr>\";\n\n//set content-type\n$headers = \"MIME-Version: 1.0\" . \"", "\\r\\n\";\n$headers .= \"Content-type:text/html;charset=iso-8859-1\" . \"", "\\r\\n\";\n\n// More headers\n$headers .= 'From: <livingdeal@overstock-king.com>' . \"", "\\r\\n\";\n$headers .= 'cc:'. ", "$email . \"", "\\r\\n\";\n\nmail($to,$subject,$message,$headers);\n\nFor some reason I'm not getting any mail sent at all. ", "The service is hosted so i'm not running it from localhost, and even when I write\nif (mail(....))\n{ echo \"success\";\n}\nelse { echo \"failed\"; }\n\nI always get success, so my suspicion is that it is a problem on the server end. ", "If php mail goes from port 25 is there any way to change the port to a different one in the script? ", "or would it be in php.ini.", "\nAlso, would I be able to use a different server (that has a different domain) to send the mail without redirecting the use to that other webpage? ", "I guess in other words can I connect to an smtp server through a php script before sending the mail?", "\n\nA:\n\nMail() doesn't send mail, it submits it to the server's mail daemon for sending. ", " If it returns true, that merely means that it was successfully submitted to the queue. ", " \nYou need to look at the logs of your mail daemon to determine if the messages are in the queue, if they were actually sent, and if not, what error messages were logged when the message failed to send. ", " \nBTW, the machine is running a mail daemon, right? ", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.023809523809523808, 0.003278688524590164, 0, 0, 0, 0, 0, 0, 0, 0.014925373134328358, 0, 0.012658227848101266, 0, 0, 0.009900990099009901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.002583
5
[ { "analysis_explanation": null, "end": 93, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 74 }, { "analysis_explanation": null, "end": 884, "entity_type": "EMAIL_ADDRESS", "recognition_metadata": { "recognizer_identifier": "EmailRecognizer_140094861343664", "recognizer_name": "EmailRecognizer" }, "score": 1, "start": 855 }, { "analysis_explanation": null, "end": 670, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 653 }, { "analysis_explanation": null, "end": 805, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 795 }, { "analysis_explanation": null, "end": 93, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 80 }, { "analysis_explanation": null, "end": 884, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 866 }, { "analysis_explanation": null, "end": 1377, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 1371 } ]
[ "Q:\n\nNew to Key-Value-Observing; why am I unable to monitor the value of an int in my AppDelegate?", "\n\nI have a public variable in my Objective-C++ AppDelegate called stepsCompleted, so I access it in my table view controller with [AppDelegate instance]->stepsCompleted.", "\nI want my table view controller to tell me when the value of that variable has changed, so I do the following in the initWithCoder: method that I know is being called:\n[self addObserver:self forKeyPath:@\"[AppDelegate instance]->stepsCompleted\" options:0 context:NULL];\n\nHowever, despite me changing stepsCompleted constantly in the AppDelegate, my method:\n- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {\n\n}\n\nIs never called.", "\nWhat exactly am I doing wrong?", "\n\nA:\n\nThere are different problems with your code. ", "First of all, Key-Value Observing is\na mechanism to observe properties of an object. ", "It does not work with instance\nvariables. ", "So you should declare \"stepsCompleted\" as a property of the application delegate instead of an instance variable:\n@property (nonatomic) int stepsCompleted;\n\nand set its value through the property accessor methods, e.g.\n[AppDelegate instance].stepsCompleted = newValue;\n\nNext, \"[AppDelegate instance]->c\" is not a key path, and you have to specify at least one observing option, e.g. NSKeyValueObservingOptionNew.", "\nTo observe the \"stepsCompleted\" property of [AppDelegate instance], it should be\n[[AppDelegate instance] addObserver:self \n forKeyPath:@\"stepsCompleted\"\n options:NSKeyValueObservingOptionNew\n context:NULL];\n\nA:\n\nAlthough it’s the quickest and easiest way, you don’t really need to declare an @property to use KVO, you just need to make sure that before you call willChange and didChange for the property correctly, and a way to access it.", "\nFor instance, in the most manual case, you could implement stepsCompleted like this:\n@implementation SomeClass {\n int _stepsCompleted;\n}\n\n- (void)setStepsCompleted:(int)stepsCompleted;\n{\n [self willChangeValueForKey:@“stepsCompleted”];\n _stepsCompleted = stepsCompleted;\n [self didChangeValueForKey:@“stepsCompleted”];\n}\n\n- (int)stepsCompleted;\n{\n return _stepsCompleted;\n}\n\n@end\n\nThen if you observed the keyPath “stepsCompleted” on “someObject\" you would get called when it changed, assuming you ONLY ever changed it by using its setter, for example via:\n[self stepsCompleted:10];\n\nBut since Apple introduced properties, the above can be shortened to the exactly equivalent:\nself.stepsCompleted = 10;\n\nBut that’s still a whole lot of code for the setter and getter, and you don’t have to write all that, because Apple did a couple cool things in the last several years. ", "One is the @property notation, which basically writes the above set/get code for you (with some extra good stuff thrown in). ", "So now you can just put in your .h file:\n@property int stepsCompleted;\n\nAnd those two methods will be written for you. ", "As long as you make sure you ONLY use the dot-notation or call the setter directly, KVO will work.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.010309278350515464, 0.011834319526627219, 0.001984126984126984, 0, 0, 0, 0, 0.009708737864077669, 0.007736943907156673, 0.004509582863585118, 0.008, 0.008403361344537815, 0.01020408163265306, 0 ]
0.005192
5
[ { "analysis_explanation": null, "end": 451, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 440 }, { "analysis_explanation": null, "end": 1244, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1236 }, { "analysis_explanation": null, "end": 1769, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1760 }, { "analysis_explanation": null, "end": 2791, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2769 }, { "analysis_explanation": null, "end": 2605, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 2598 } ]
[ "(CNN) Two associates of President Donald Trump's personal lawyer Rudy Giuliani asked the former Ukrainian President in February to open an investigation into former Vice President Joe Biden and alleged interference into the 2016 election -- and in turn receive a state visit to Washington, DC, the Wall Street Journal reported on Friday.", "\n\nCiting people familiar with the matter, the paper reported that Lev Parnas and Igor Fruman -- two Giuliani associates indicted on criminal charges last month for allegedly funneling foreign money into US elections -- met to discuss the exchange with then-Ukrainian President Petro Poroshenko and then-Ukrainian general prosecutor Yuriy Lutsenko at Lutsenko's office.", "\n\nThe requests for investigations during the meeting mirror those later made by President Donald Trump when he asked current Ukrainian President Volodymy Zelensky -- who unseated Poroshenko -- on a July phone call to investigate former Vice President Joe Biden and his son, Hunter. ", "There is no evidence of wrongdoing by either Biden.", "\n\nPoroshenko never ultimately announced any such investigations, according to the Journal. ", "Giuliani's lawyer Robert Costello told the paper that Giuliani had no knowledge of the meeting between his associates and the Ukrainian officials.", "\n\nPoroshenko, who was in midst of a competitive reelection campaign, was interested in the potential Washington visit -- and the subsequent prestige -- floated by Giuliani's associates, one of the people familiar with the matter told the Journal.", "\n\nRead More" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.01483679525222552, 0.01358695652173913, 0.014184397163120567, 0.0196078431372549, 0.01098901098901099, 0.02054794520547945, 0.008130081300813009, 0 ]
0.012735
5
[ { "analysis_explanation": null, "end": 46, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 34 }, { "analysis_explanation": null, "end": 78, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 65 }, { "analysis_explanation": null, "end": 105, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 96 }, { "analysis_explanation": null, "end": 127, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 119 }, { "analysis_explanation": null, "end": 189, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 180 }, { "analysis_explanation": null, "end": 228, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 224 }, { "analysis_explanation": null, "end": 288, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 278 }, { "analysis_explanation": null, "end": 336, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 330 }, { "analysis_explanation": null, "end": 412, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 402 }, { "analysis_explanation": null, "end": 428, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 417 }, { "analysis_explanation": null, "end": 444, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436 }, { "analysis_explanation": null, "end": 495, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 485 }, { "analysis_explanation": null, "end": 541, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 539 }, { "analysis_explanation": null, "end": 602, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 593 }, { "analysis_explanation": null, "end": 629, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 613 }, { "analysis_explanation": null, "end": 648, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 639 }, { "analysis_explanation": null, "end": 682, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 668 }, { "analysis_explanation": null, "end": 694, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 686 }, { "analysis_explanation": null, "end": 805, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 793 }, { "analysis_explanation": null, "end": 837, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 828 }, { "analysis_explanation": null, "end": 865, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 848 }, { "analysis_explanation": null, "end": 892, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 882 }, { "analysis_explanation": null, "end": 905, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 901 }, { "analysis_explanation": null, "end": 963, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 954 }, { "analysis_explanation": null, "end": 983, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 977 }, { "analysis_explanation": null, "end": 1035, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1030 }, { "analysis_explanation": null, "end": 1047, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1037 }, { "analysis_explanation": null, "end": 1134, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1126 }, { "analysis_explanation": null, "end": 1159, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1144 }, { "analysis_explanation": null, "end": 1188, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1180 }, { "analysis_explanation": null, "end": 1261, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1252 }, { "analysis_explanation": null, "end": 1283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1273 }, { "analysis_explanation": null, "end": 1382, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1372 }, { "analysis_explanation": null, "end": 1442, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1434 } ]
[ "It is particularly useful to be able to display in three dimensions the interior structure of human, animal and other organisms. ", "Practically all of the data available on such organisms has at some time been collected from cross-sections through the organism. ", "From such sections, over the years, data has been collected and stored as pictures in books, on photographic slides and the like. ", "It is an object of this aspect of the invention to display this information in a multi-dimensional pictorial form. ", "It is known (U.K. Specifications No. ", "633712 and 634316) to provide a set of parallel transparent panels mounted to a support frame to represent different heights above the ground, for the purpose of plotting the movements of aircraft. ", "However, the pictorial representation is continually changing and does not represent a three-dimensional structure." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ { "analysis_explanation": null, "end": 293, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 284 }, { "analysis_explanation": null, "end": 521, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 517 }, { "analysis_explanation": null, "end": 547, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 541 }, { "analysis_explanation": null, "end": 558, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 552 } ]
[ "I just wrapped up a week at a great dog daycare in Ottawa, Ontario – coincidentally enough called, Ottawa Doggy Daycare & Training Center. ", "I met lots of new friends there and had some interesting adventures.", "\n\nI’ll start at the beginning. ", "Before Mum left for the Cayman Islands, we looked around at a couple of places to find the best one for a little celebrity. ", "The first one we looked at was called the Ottawa Dog House. ", "I went in with Mum and Dad to look around. ", "Definitely not suitable for a celebrity. ", "It was a small, empty and decrepit looking bungalow house with what looked like an improvised wood and wire backyard fence. ", "There weren’t even beds in the house! ", "Just a bare floor to lie on. ", "Next!", "\n\nWe came to the Ottawa Doggy Daycare and it was an instant hit. ", "The owner was very nice and gave us a little tour. ", "It was a big warehouse-type building, but nicely done up with sections for small and big dogs. ", "The outdoor part was a bit small, but at least it was properly fenced. ", "You can always tell how good a place is by how many forms you have to fill out about your dog. ", "That way at least you know that all the dogs have had their vaccinations.", "\n\nSince my first day there I really took to one of the employees named Kathleen. ", "I guess she kind of played my motherly figure while Mum was gone. ", "She was also a good photographer and agreed to take the place of my usual 24/7 camera crew while I was at daycare.", "\n\nKathleen introduced me to a wonderful lady dachshund named, Dixie. ", "Here’s the two of us on the couch. ", "Technically, the dogs are not supposed to be on this couch, but who are we kidding? ", "We’re dachshunds..\n\nI was a bit lonely at first though, not knowing where my own Mum went, or why Dad was leaving me in this strange place for the day.", "\n\nKathleen (and all the other staff there) took great care of me. ", "They always made sure I was happy and comfortable. ", "They even gave me this cool orange ball to play with. ", "At first I thought it was just another regular ball, but when I saw it rolling around I noticed treats started falling out! ", "Awesome!", "\n\nBut when you’re out in the yard, or the ‘pen’ as some dogs call it – things change. ", "You got to watch your back. ", "Many of the dogs there recognized me and came to my side to form a clique, which I so dually dubbed, ‘Da Dawg Gang’. ", "There were a few of us, including Dixie the dachshund, Scout the terrier, and Horton the puggle. ", "They had all been going there a long time so really knew the ropes. ", "That’s me and Scout below. ", "You can see he looks like a ‘scrapper’.", "\n\nBelow is Horton and I. He is a cool dog with a long history. ", "He wouldn’t tell me exactly why he was there. ", "Anyway, in the below picture he was leaning over and whispering something to me. ", "He said, “Hey Crusoe. ", "Can I have your pawtograph? ", "But don’t do it in front of the others.. It’s for my Mom”.", "\n\nI met this one dog named Maggie the springer spaniel. ", "She was just like my best friend, Laffie. ", "So naturally, I got along really well with her. ", "I would race up and down the pen, having her chase me. ", "Too fun!", "\n\n\n\n\n\nThe last day was when the real action happened. ", "There was this new lady who just got put in the joint daycare, and as I was feeling more confident from being there a while, I figured I would go check her out. ", "I told Scout to watch my back.", "\n\nSo I trotted on over, trying not to look too conspicuous. ", "It was only by coincidence that she turned her back to me during my approach, and so didn’t see me coming. ", "When I got up to her I couldn’t help but take a peep (and a sniff) up her skirt. ", "She obviously didn’t take very kindly to this surprise – as she whipped around and nipped me right on the nose! ", "Can you believe that?!", "\n\nBeing a celebrity and gentleman, I felt it was not my place to fight a girl. ", "So I merely walked away, although I can’t say without a little broken pride. ", "If it had been a male dog though, I would have bitten his face right off.", "\n\nAfter the ‘fight’, the employees all rushed in to help me. ", "They cleaned me up really good and even put polysporin on my (‘supposedly’ small) cuts. ", "I also had to fire Scout as my personal bodyguard when I realized he had been playing with a bone while he was supposed to be covering me. ", "That’s what you get for trusting those you don’t know very well. ", "Maggie came to see me after and gave me a bunch of kisses. ", "Plus, Kathleen was there to give me some extra comfort.", "\n\nAnyway, those things can happen no matter where you are. ", "I have to say that the Ottawa Doggy Daycare did a fantastic job looking after me. ", "The staff treat me like a real celebrity, and are always happy to see me come and sad to see me go. ", "They are very dedicated and very passionate about what they do. ", "You have to appreciate that.. Kathleen even said I was her ‘main squeeze’ while I was there, and that I was the ‘sweetest’ little guy.", "\n\nMum is supposed to go on another trip this July (without me again, so we’ll have to discuss that), but I’ll definitely be back to the Ottawa Doggy Daycare Center! ", "I just hope Maggie and Kathleen are still there! ", "If you happen to be one of my fans in Ottawa and looking for a dog daycare in the West-End, I would recommend this one 100%!", "\n\nWhat have your daycare experiences been like?", "\n\nKeep ballin’,\n\n~ Crusoe\n\nMy New Book! ", "Featuring my worldly travels far and wide, from Europe to Mexico and more, and the whole story of my surgery and recovery! ", "Rated 5 stars on Amazon! ", "Get Yours!", "\n\nComments\n\ncomments" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.007194244604316547, 0, 0, 0, 0.016666666666666666, 0.023255813953488372, 0, 0, 0, 0, 0, 0.015384615384615385, 0, 0, 0, 0, 0, 0.012345679012345678, 0.015151515151515152, 0.008771929824561403, 0.014492753623188406, 0, 0, 0.006622516556291391, 0.015151515151515152, 0, 0, 0, 0.125, 0, 0, 0, 0.010309278350515464, 0, 0.037037037037037035, 0, 0.015873015873015872, 0, 0, 0, 0, 0, 0.017857142857142856, 0.023809523809523808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007194244604316547, 0, 0.01694915254237288, 0.01818181818181818, 0, 0.012195121951219513, 0, 0, 0.007462686567164179, 0.006060606060606061, 0.04081632653061224, 0, 0, 0, 0, 0.04, 0, 0 ]
0.006587
5
[ { "analysis_explanation": null, "end": 24, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 18 }, { "analysis_explanation": null, "end": 57, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 51 }, { "analysis_explanation": null, "end": 66, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 59 }, { "analysis_explanation": null, "end": 247, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 244 }, { "analysis_explanation": null, "end": 275, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 257 }, { "analysis_explanation": null, "end": 439, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 436 }, { "analysis_explanation": null, "end": 447, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 444 }, { "analysis_explanation": null, "end": 1169, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1157 }, { "analysis_explanation": null, "end": 1228, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1220 }, { "analysis_explanation": null, "end": 1285, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1282 }, { "analysis_explanation": null, "end": 1419, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1411 }, { "analysis_explanation": null, "end": 1463, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1454 }, { "analysis_explanation": null, "end": 1681, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1678 }, { "analysis_explanation": null, "end": 1698, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1695 }, { "analysis_explanation": null, "end": 1747, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1740 }, { "analysis_explanation": null, "end": 1757, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1749 }, { "analysis_explanation": null, "end": 2364, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2358 }, { "analysis_explanation": null, "end": 2527, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2521 }, { "analysis_explanation": null, "end": 2534, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2532 }, { "analysis_explanation": null, "end": 2840, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2834 }, { "analysis_explanation": null, "end": 3029, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3017 }, { "analysis_explanation": null, "end": 4223, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4217 }, { "analysis_explanation": null, "end": 4290, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4282 }, { "analysis_explanation": null, "end": 4673, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4665 }, { "analysis_explanation": null, "end": 4773, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4770 }, { "analysis_explanation": null, "end": 4817, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4808 }, { "analysis_explanation": null, "end": 4951, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4945 }, { "analysis_explanation": null, "end": 4964, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 4956 }, { "analysis_explanation": null, "end": 5026, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5020 }, { "analysis_explanation": null, "end": 5245, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5239 }, { "analysis_explanation": null, "end": 5255, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 5249 } ]
[ "Pediatric asthma is a well documented public health issue in the United States. ", "The impact of pediatric asthma can be measured by both health care costs and morbidity. ", "Asthma morbidity is seasonal with the greatest number of exacerbations occurring in autumn and the fewest in mid-summer. ", "There is a strong age-related seasonal variability with grade school children being the most vulnerable to seasonal changes. ", "Furthermore, the annual peak asthma morbidity for children has been shown to be associated with the start of the school year. ", "Recent research suggests that this seasonality in children is primarily related to viral respiratory tract infections. ", "Regular handwashing has been widely recognized as the most effective means to combat the spread of infectious illness, including viruses. ", "However, effective handwashing among school-age children is inconsistent at best. ", "The school setting provides multiple barriers to effective handwashing such as time constraints, and frequent lack of soap, towels, and strategically located sinks. ", "Spring loaded faucets which serve to prevent overuse of water inadvertently pose an additional barrier to thorough hand cleansing. ", "Hand sanitization in such settings may be effectively accomplished by antimicrobial rinse-free hand sanitizers. ", "Therefore, we propose to collaborate with a single school district to achieve the following specific aims: 1. ", "Develop a simple school based intervention using hand sanitizers to decrease asthma exacerbations in children with asthma. ", "2. ", "Implement a school based internet monitoring system within both the active and placebo groups to record asthma symptoms, peak flow meter readings, school absences, and use of rescue medications at school. ", "3. ", "Randomize 26 schools to either active or placebo hand sanitizer. ", "4. ", "Use a cross-over design to compare the active and placebo groups with regard to time-averaged proportion of children with asthma who have at least one exacerbation per month. ", "Improving hand hygiene in the school environment may be a relatively simple, yet effective way to reduce the risk of asthma exacerbations. ", "By achieving these specific aims, this study will provide valuable information on the effectiveness of hand sanitizers in the school setting. [", "unreadable] [unreadable] [unreadable]" ]
{ "pile_set_name": "NIH ExPorter" }
[ 0, 0, 0, 0, 0, 0, 0, 0.012195121951219513, 0, 0, 0, 0, 0, 0, 0.004878048780487805, 0, 0, 0, 0, 0, 0, 0 ]
0.000776
5
[ { "analysis_explanation": null, "end": 78, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 61 }, { "analysis_explanation": null, "end": 258, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 252 }, { "analysis_explanation": null, "end": 287, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 277 }, { "analysis_explanation": null, "end": 437, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 431 }, { "analysis_explanation": null, "end": 538, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 523 }, { "analysis_explanation": null, "end": 1050, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1044 } ]
[ "Q:\n\nHow to make a simple jQuery button in XHTML strict with no form postback?", "\n\nI am making a site with DOCTYPE XHTML Strict and it complains if I have an input button or button element outside a form.", "\nSo I put it in a form and it complains that I don't have an action attribute.", "\nSo I put in an action attribute but then the buttons postback to the page, which I don't want.", "\nHow can I just have a normal jQuery button with bound event in XHTML strict?", "\n<form action=\"\">\n <div>\n <input id=\"button1\" type=\"button\" value=\"highlight it\" /> \n <input id=\"button2\" type=\"button\" value=\"toggle title\" />\n <p>here is another paragraph</p> \n <div id=\"show1\">What color is the sky?</div>\n <div id=\"answer1\">blue</div>\n <button id=\"button1\">Show Answer</button>\n </div>\n</form>\n\nA:\n\nI am making a site with DOCTYPE XHTML Strict and it complains if I have an input button or button element outside a form.", "\n\nNope, it's perfectly acceptable to have an input/button with no form. ", "Indeed, there is no way in DTD to express the limitation that an input must have a form ancestor, so XHTML couldn't ban it if it wanted to. ", "If you had a validation error, it wasn't that. ", "It was probably this:\n<button id=\"button1\">Show Answer</button>\n\nYou've already got an element with id=\"button1\". ", "ids must be unique.", "\nWhen you aren't going to submit a form, you generally shouldn't include the form element. ", "However there is one case you need to: to group a set of radio inputs that have the same control name. ", "If they are left with no form ancestor they don't know they're connected, so browsers tend not to make them exclusive.", "\nIn this case, the usual idiom is to set the required action attribute to \"#\", and add an onsubmit handler to the form that always returns false so that when JS is enabled the form will never be submitted. ", "Don't put this return false on the buttons themselves, as the form may be submitted by other means than a button click: in particular, an Enter keypress.", "\n\nSo I put in an action attribute but then the buttons postback to the page, which I don't want.", "\n\nAn <input type=\"button\"> won't submit the form. ", "<button> shouldn't either, but it does in IE due to a bug where the browser uses the wrong default type value. ", "So you have to write <button type=\"button\">.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0.012987012987012988, 0.008264462809917356, 0, 0.007142857142857143, 0, 0.008771929824561403, 0, 0, 0, 0, 0.0048543689320388345, 0, 0, 0.02, 0, 0.022727272727272728, 0 ]
0.004036
5
[ { "analysis_explanation": null, "end": 1034, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1031 }, { "analysis_explanation": null, "end": 1110, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1105 } ]
[ "The health of children and young people with cerebral palsy: a longitudinal, population-based study.", "\nCerebral palsy (CP) is a chronic condition about which little is known in relation to the long term stability of and factors influencing health. ", "To describe the health status of 4-17 year olds with ambulant CP, compare with the general population and identify factors predicting change in health over time. ", "A longitudinal, clinical survey. ", "A regional hospital-based Gait Analysis Laboratory. ", "Those aged 4-17 years and able to walk at least 10m independently were identified from a case register of people with CP. ", "A total of 184 subjects took part (38% of all eligibles in the region); 154 (84%) returned for a second assessment on average 2.5 years later. ", "The Child Health Questionnaire (Parent-form-50) was completed by 184 parents at time 1, and 156 at time 2. ", "Children and young people with CP have significantly poorer health across a number of domains when compared to children in the general child population. ", "Over time improvements occurred in behaviour (p=0.01), family activities (p<0.001) and physical functioning (p=0.05). ", "Linear regression showed that gross motor function (p<0.001) and cerebral palsy subtype (p<0.05) were associated with changes in physical functioning; age was associated with changes in behaviour (p=0.007) and family activities (p=0.01); and communication ability was significantly associated with changes in family activities (p=0.005). ", "Children and young people with CP have poorer health than their able bodied peers but relatively stable health over 2.5 years. ", "Where change occurred, it was for the better." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0.019230769230769232, 0, 0, 0.009345794392523364, 0, 0.00847457627118644, 0.005917159763313609, 0, 0 ]
0.003305
5
[ { "analysis_explanation": null, "end": 293, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279 }, { "analysis_explanation": null, "end": 514, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 504 }, { "analysis_explanation": null, "end": 756, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 741 }, { "analysis_explanation": null, "end": 1599, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1585 } ]
[ "This invention relates to improvements in an electric discharge machining method and apparatus for performing machining (rocking machining) while rocking an electrode with respect to a workpiece in a plane vertical to a machining feed direction.", "\nElectric discharge machining is machining for generating an electric discharge between an electrode and a workpiece (hereinafter called xe2x80x9cbetween themxe2x80x9d) to melt and remove the workpiece. ", "Thus, unless work scraps occurring between them due to the melt and removal of the workpiece are eliminated by some means, repeats of insulation recovery and electric discharge between them cannot be kept in a normal state, and bad effects such as a decrease in machining efficiency and a deterioration of work surface properties occur.", "\nAs one of elimination means of such work scraps between them, a rocking function of increasing efficiency of the elimination of the work scraps through stirring by performing machining while rocking the electrode relatively to the workpiece in a plane vertical to a machining feed direction has been known. ", "Parameters about this rocking function include a locus of relative movement between an electrode and a workpiece (hereinafter called xe2x80x9crocking shapexe2x80x9d), the amount of relative movement (hereinafter called xe2x80x9crocking radiusxe2x80x9d), a relative movement speed (hereinafter called xe2x80x9crocking speedxe2x80x9d), and the number of divisions of the rocking shape and a division shape in the case of using means for dividing the rocking shape on making a determination of completion.", "\nFIG. ", "7 is a diagram showing a configuration of a conventional electric discharge machining apparatus disclosed in JP-A-126540/1994 and in the drawing, numeral 1 is an electrode, and numeral 2 is a workpiece, and numeral 3 is a voltage detection part between the electrode and the workpiece, and numeral 4 is a calculation part, and numeral 5 is memory, and numeral 6 is a position check part, and numeral 7 is a rocking speed calculation part, and numeral 8 is a rocking speed table in which correspondence between an average voltage between the electrode 1 and the workpiece 2 and a rocking speed suitable for the voltage is previously registered. ", "Also, FIG. ", "8 shows a situation in which an orbit path of a square rocking shape is divided into 12 portions, and in the drawing, numeral 9 is a rocking shape, and numeral 10 is one area divided. ", "In FIG. ", "7, a machining voltage is applied between them from a voltage source (not shown), and the voltage between them is detected by the voltage detection part 3 between them. ", "The calculation part 4 obtains a weighted average of a voltage between them detected by the voltage detection part 3 and previous calculation data (gap data) of the area. ", "All the gap data about all the divided areas of the orbit path of the rocking shape are stored in the memory 5. ", "The position check part 6 receives information from a motor control part (not shown) at the time of orbiting the next rocking shape, and checks the present position of the electrode, and checks whether it is positioned in any the divided area 10 of the rocking shape 9 of the electrode of FIG. ", "8, and gap data corresponding to an address of the checked position area is read from the memory 5, and supplies the gap data to the rocking speed setting part 7. ", "The rocking speed setting part 7 reads out gap data before one orbit of the area stored in the memory 5, and sees the rocking speed table 8, and sets a rocking speed corresponding to the gap data read from the memory 5, and outputs the rocking speed to the motor control part as rocking speed data.", "\nIn the invention disclosed in JP-A-126540/1994 thus, the optimum rocking speed is set every machining area and electric discharge machining with stability and high accuracy is performed. ", "However, a change in the rocking speed or a determination of completion is made by the average voltage between the electrode and the workpiece and in a method of detecting the average voltage between them to control rocking movement, it was difficult to detect an exact state of electric discharge every electric discharge pulse, and it was difficult to force machining conditions such as pause time at the time of stable electric discharge (for example, it means that pause time is reduced to force a value of the pause time in order to improve machining efficiency, and hereinafter called xe2x80x9cforced machining at the time of stable machiningxe2x80x9d) or take avoidance at the time of abnormal electric discharge. ", "Further, control of a rocking function is performed by a machining shape or the amount of machining, but bite control (also known as chamfer control) at the beginning of machining and forced machining control after the machining is once completed are not performed.", "\nAlso, when an operator inputs a machining state and sets parameters about a rocking function, there were problems that skill of the operator is required while the operator needs to monitor the machining state from beginning to end of the machining.", "\nThis invention is implemented to solve the problems as described above, and an object of the invention is to obtain an electric discharge machining method and apparatus capable of automatically making a parameter setting about a rocking function according to a detected electric discharge state without compelling an operator to make the parameter setting about the rocking function and achieving improvement in machining efficiency and stabilization of the machining.", "\nWith an electric discharge machining method in accordance with the invention, in an electric discharge machining method for performing machining while relatively rocking an electrode and a workpiece in a plane vertical to a machining feed direction, an electric discharge state is detected by detecting a short-circuit frequency between the electrode and the workpiece, a defective electric discharge frequency and a position of the electrode, and parameters about a rocking function are set according to the electric discharge state.", "\nAlso, an initial setting of a rocking speed is changed according to a combination of the electrode and the workpiece, a shape of the electrode or a rocking shape.", "\nAlso, in an electric discharge machining method for performing machining while relatively rocking an electrode and a workpiece in a plane vertical to a machining feed direction, an electric discharge state is detected by detecting a short-circuit frequency between the electrode and the workpiece, a defective electric discharge frequency and a position of the electrode, and a rocking speed is set to a speed higher than that of a stable machining state when the detected electric discharge state is an abnormal electric discharge continuation state and a rocking speed is set to a speed lower than that of a stable machining state when the detected electric discharge state is a stable continuation state.", "\nAlso, in an electric discharge machining method for performing machining while relatively rocking an electrode and a workpiece in a plane vertical to a machining feed direction, when bite control or forced machining control is set, a rocking speed is set to a speed higher than a value before the setting of the bite control or the forced machining control.", "\nAlso, a rocking radius is set to a value smaller than a value before the setting of the bite control or the forced machining control.", "\nWith an electric discharge machining apparatus in accordance with the invention, in an electric discharge machining apparatus for performing machining while relatively rocking an electrode and a workpiece in a plane vertical to a machining feed direction, there are provided electric discharge state detection means for detecting a short-circuit frequency between the electrode and the workpiece, a defective electric discharge frequency and a position of the electrode, and rocking function setting means for setting parameters about a rocking function according to the electric discharge state detected by the electric discharge state detection means.", "\nAlso, there is provided rocking function setting means for changing an initial setting of a rocking speed according to a combination of the electrode and the workpiece, a shape of the electrode or a rocking shape.", "\nAlso, in an electric discharge machining apparatus for performing machining while relatively rocking an electrode and a workpiece in a plane vertical to a machining feed direction, there are provided electric discharge state detection means for detecting a short-circuit frequency between the electrode and the workpiece, a defective electric discharge frequency and a position of the electrode, and rocking function setting means for setting a rocking speed to a speed higher than that of a stable machining state when the electric discharge state detected by the electric discharge state detection means is an abnormal electric discharge continuation state and setting a rocking speed to a speed lower than that of a stable machining state when the electric discharge state detected by the electric discharge state detection means is a stable continuation state.", "\nAlso, in an electric discharge machining apparatus for performing machining while relatively rocking an electrode and a workpiece in a plane vertical to a machining feed direction, there is provided rocking function setting means for setting a rocking speed to a speed higher than a value before the setting of bite control or forced machining control when the bite control or the forced machining control is set.", "\nAlso, there is provided rocking function setting means for setting a rocking radius to a value smaller than a value before the setting of the bite control or the forced machining control.", "\nSince the invention is constructed as described above, an exact electric discharge state every electric discharge pulse can be detected, and forced machining at the time of stable machining by the rocking movement or avoidance at the time of abnormal electric discharge can be performed. ", "Therefore, there is an effect capable of achieving improvement in machining efficiency and stabilization of the machining.", "\nAlso, there is an effect capable of achieving improvement in machining efficiency and stabilization of the machining more by changing an initial setting of a rocking speed according to a combination of an electrode and a workpiece, an electrode shape or a rocking shape.", "\nFurther, there is an effect capable of performing bite control and forced machining control.", "\nFurthermore, there is an effect capable of automatically making a parameter setting about a rocking function according to a detected electric discharge state without compelling an operator to make the parameter setting about the rocking function." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0.09090909090909091, 0, 0.125, 0, 0, 0, 0.003401360544217687, 0, 0, 0.005319148936170213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.00624
5
[ { "analysis_explanation": null, "end": 1601, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1600 }, { "analysis_explanation": null, "end": 2448, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2447 }, { "analysis_explanation": null, "end": 3194, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 3193 }, { "analysis_explanation": null, "end": 1725, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 1714 }, { "analysis_explanation": null, "end": 3701, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 3690 }, { "analysis_explanation": null, "end": 1720, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1714 }, { "analysis_explanation": null, "end": 3696, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 3690 } ]
[ "Blogs\n\nEvents\n\nStories\n\nAttention: RHN Hosted will reach the end of its service life on July 31, 2017.", "\nCustomers will be required to migrate existing systems to Red Hat Subscription Management prior to this date.", "\nLearn more here\n\nDetails\n\nUpdated kernel-rt packages that fix several security issues and two bugsare now available for Red Hat Enterprise MRG 2.0.", "\n\nThe Red Hat Security Response Team has rated this update as havingimportant security impact. ", "Common Vulnerability Scoring System (CVSS) basescores, which give detailed severity ratings, are available for eachvulnerability from the CVE links in the References section.", "\n\nThe kernel-rt packages contain the Linux kernel, the core of any Linuxoperating system.", "\n\nThis update fixes the following security issues:\n\n* A malicious CIFS (Common Internet File System) server could send aspecially-crafted response to a directory read request that would result ina denial of service or privilege escalation on a system that has a CIFSshare mounted. (", "CVE-2011-3191, Important)\n\n* The way fragmented IPv6 UDP datagrams over the bridge with UDPFragmentation Offload (UFO) functionality on were handled could allow aremote attacker to cause a denial of service. (", "CVE-2011-4326, Important)\n\n* GRO (Generic Receive Offload) fields could be left in an inconsistentstate. ", "An attacker on the local network could use this flaw to cause adenial of service. ", "GRO is enabled by default in all network drivers thatsupport it. (", "CVE-2011-2723, Moderate)\n\n* A flaw in the FUSE (Filesystem in Userspace) implementation could allowa local user in the fuse group who has access to mount a FUSE file systemto cause a denial of service. (", "CVE-2011-3353, Moderate)\n\n* A flaw in the b43 driver. ", "If a system had an active wireless interfacethat uses the b43 driver, an attacker able to send a specially-craftedframe to that interface could cause a denial of service. (", "CVE-2011-3359,Moderate)\n\n* A flaw in the way CIFS shares with DFS referrals at their root werehandled could allow an attacker on the local network, who is able to deploya malicious CIFS server, to create a CIFS network share that, when mounted,would cause the client system to crash. (", "CVE-2011-3363, Moderate)\n\n* A flaw in the m_stop() implementation could allow a local, unprivilegeduser to trigger a denial of service. (", "CVE-2011-3637, Moderate)\n\n* Flaws in ghash_update() and ghash_final() could allow a local,unprivileged user to cause a denial of service. (", "CVE-2011-4081, Moderate)\n\n* A flaw in the key management facility could allow a local, unprivilegeduser to cause a denial of service via the keyctl utility. (", "CVE-2011-4110,Moderate)\n\n* A flaw in the Journaling Block Device (JBD) could allow a local attackerto crash the system by mounting a specially-crafted ext3 or ext4 disk.(CVE-2011-4132, Moderate)\n\n* A flaw in the way memory containing security-related data was handled intpm_read() could allow a local, unprivileged user to read the results of apreviously run TPM command. (", "CVE-2011-1162, Low)\n\n* I/O statistics from the taskstats subsystem could be read without anyrestrictions, which could allow a local, unprivileged user to gatherconfidential information, such as the length of a password used in aprocess. (", "CVE-2011-2494, Low)\n\n* Flaws in tpacket_rcv() and packet_recvmsg() could allow a local,unprivileged user to leak information to user-space. (", "CVE-2011-2898, Low)\n\nTo install kernel packages manually, use \"rpm -ivh [package]\". ", "Do notuse \"rpm -Uvh\" as that will remove the running kernel binaries fromyour system. ", "You may use \"rpm -e\" to remove old kernels afterdetermining that the new kernel functions properly on your system." ]
{ "pile_set_name": "Pile-CC" }
[ 0.00980392156862745, 0.00909090909090909, 0.006756756756756757, 0.010526315789473684, 0.005747126436781609, 0.011235955056179775, 0.0035460992907801418, 0.004784688995215311, 0.02857142857142857, 0, 0.015151515151515152, 0.009852216748768473, 0.018518518518518517, 0, 0.007017543859649123, 0.0072992700729927005, 0.007194244604316547, 0.006329113924050633, 0.005361930294906166, 0.004201680672268907, 0.0070921985815602835, 0.011904761904761904, 0, 0 ]
0.007916
5
[ { "analysis_explanation": null, "end": 101, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 88 }, { "analysis_explanation": null, "end": 211, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 193 }, { "analysis_explanation": null, "end": 669, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 664 }, { "analysis_explanation": null, "end": 708, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 694 }, { "analysis_explanation": null, "end": 1110, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1086 }, { "analysis_explanation": null, "end": 2282, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2266 }, { "analysis_explanation": null, "end": 2560, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2544 }, { "analysis_explanation": null, "end": 2685, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2682 } ]
[ "Melancholic Cinematic Pack\n\nMelancholic Cinematic Pack\n\nMelancholic cinematic pack of four tracks with shades of autumn soundtrack and sentimentality. ", "Sensual melodies and rainy soundtrack mood is transmitted in each track. ", "Loneliness and the feeling of beauty, love and rastovanii transmitted in a single stream.", "\n\nUse in one end product, free or commercial. ", "Most web uses. ", "10,000 copy limit for a downloaded or physical end product. ", "Plus up to 1 million broadcast audience. ", "The total price includes the item price and a buyer fee.", "\n\nUse in one end product, free or commercial. ", "Most web uses. ", "Up to 1 million broadcast audience. ", "Plus unlimited copies of a downloaded or physical end product. ", "The total price includes the item price and a buyer fee.", "\n\nUse in one end product, free or commercial. ", "Most web uses. ", "Unlimited copies of a downloaded or physical end product. ", "Plus a broadcast audience of up to 10 million. ", "The total price includes the item price and a buyer fee.", "\n\nUse in one end product, free or commercial. ", "Most web uses. ", "Unlimited copies of a downloaded or physical end product. ", "Plus an unlimited broadcast audience, or a theatrically released film. ", "The total price includes the item price and a buyer fee." ]
{ "pile_set_name": "Pile-CC" }
[ 0.006622516556291391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.000288
5
[ { "analysis_explanation": null, "end": 119, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 113 }, { "analysis_explanation": null, "end": 281, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 271 } ]
[ "The recent FDA approval of several antitumor agents whose primary mode of action is the inhibition of VEGF receptor-2 signaling and the disruption of tumor angiogenesis (e.g. sunitinib, sorafenib) has had a profound impact on the management of patients with metastatic renal cell carcinoma (RCC). ", "However, despite the ability of these agents to prolong PFS and in some instances, to induce partial tumor regression, the majority of RCC patients develop resistance to these agents within 6-12 months. ", "In previous murine xenograft studies using 786-0 and A498 cell lines we have established that resistance is likely related to angiogenic escape. ", "cDNA microarray and westerns with from xenografts of these RCC cell lines and short-term cultures (STCs) from freshly harvested human RCC identified several genes and proteins whose expression is altered with the development of resistance to sunitinib/sorafenib. ", "These gene expression studies provide several candidate proteins/pathways that, based on their known role in tumor progression and/or angiogenesis, are likely to contribute to the development of resistance. ", "We now propose to extend these studies to include: 1) validation of our murine tissue, blood and imaging findings in patients with RCC undergoing sunitinib therapy;2) assessment of the ability of pharmacologic inhibitors of these proteins/pathways to either delay or prevent resistance to sunitinib in subcutaneously implanted xenografts involving 786.0 and A498;3) assessment of promising combinations in subcutaneous and orthotopic xenografts using STCs and perfusion imaging. ", "These studies will lay the groundwork for several clinical trials with sunitinib in combination with other agents selected on the basis of their ability to block one or more critical signaling pathway that might contribute to sunitinib resistance. ", "Endpoints will include changes in tumor perfusion by MRI and serial cytokine levels, and delay in disease progression. ", "Collectively, these studies will elucidate the mechanism by which RCC develops resistance to VEGFR blockade and identify treatment strategies that might circumvent this problem." ]
{ "pile_set_name": "NIH ExPorter" }
[ 0.006734006734006734, 0.0049261083743842365, 0.006896551724137931, 0, 0, 0, 0, 0, 0 ]
0.002062
5
[ { "analysis_explanation": null, "end": 498, "entity_type": "DATE_TIME", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 487 }, { "analysis_explanation": null, "end": 557, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 553 }, { "analysis_explanation": null, "end": 1477, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.3, "start": 1473 } ]
[ "MCAF1/AM is involved in Sp1-mediated maintenance of cancer-associated telomerase activity.", "\nTelomerase maintains telomere length and is implicated in senescence and immortalization of mammalian cells. ", "Two essential components for this enzyme are telomerase reverse transcriptase (TERT) and the telomerase RNA component (encoded by the TERC gene). ", "These telomerase subunit genes are known to be mainly expressed by specificity protein 1 (Sp1). ", "MBD1-containing chromatin-associated factor 1 (MCAF1), also known as ATFa-associated modulator (AM) and activating transcription factor 7-interacting protein (ATF7IP), mediates gene regulation, although the precise function of MCAF1 remains to be elucidated. ", "Here, we report that MCAF1 is involved in Sp1-dependent maintenance of telomerase activity in cancer cells. ", "Two evolutionarily conserved domains of MCAF1 directly interact with Sp1 and the general transcriptional apparatus. ", "Selective depletion of MCAF1 or Sp1 down-regulates TERT and TERC genes in cultured cells, which results in decreased telomerase activity. ", "The transcriptionally active form of RNA polymerase II and the general transcription factor ERCC3 decreased in the TERT promoter under the loss of MCAF1 or Sp1. ", "Consistently, MCAF1 is found to be frequently overexpressed in naturally occurring cancers that originate in different tissues. ", "Our data suggest that transcriptional function of MCAF1 facilitates telomerase expression by Sp1, which may be a common mechanism in proliferative cancer cells." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.011111111111111112, 0, 0.0136986301369863, 0, 0.007722007722007722, 0.009259259259259259, 0.008620689655172414, 0.021739130434782608, 0.031055900621118012, 0.0078125, 0.00625 ]
0.010661
5
[ { "analysis_explanation": null, "end": 283, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 279 }, { "analysis_explanation": null, "end": 607, "entity_type": "NRP", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 601 }, { "analysis_explanation": null, "end": 1160, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1155 }, { "analysis_explanation": null, "end": 1182, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1178 } ]
[ "%YAML 1.1\n%TAG !", "u! ", "tag:unity3d.com,2011:\n--- !", "u!1 &1234218153790367871\nGameObject:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n serializedVersion: 6\n m_Component:\n - component: {fileID: 1234218153790367868}\n - component: {fileID: 1234218153790367867}\n - component: {fileID: 1234218153790367866}\n - component: {fileID: 1234218153790367869}\n - component: {fileID: 1234218153790367864}\n m_Layer: 5\n m_Name: DebugButton\n m_TagString: Untagged\n m_Icon: {fileID: 0}\n m_NavMeshLayer: 0\n m_StaticEditorFlags: 0\n m_IsActive: 1\n--- !", "u!224 &1234218153790367868\nRectTransform:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218153790367871}\n m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}\n m_LocalPosition: {x: 0, y: 0, z: 0}\n m_LocalScale: {x: 1, y: 1, z: 1}\n m_Children:\n - {fileID: 1234218154690601617}\n m_Father: {fileID: 1234218154926792839}\n m_RootOrder: 0\n m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}\n m_AnchorMin: {x: 0, y: 0}\n m_AnchorMax: {x: 0, y: 0}\n m_AnchoredPosition: {x: 723.2, y: 75.03}\n m_SizeDelta: {x: 1450.9, y: 150}\n m_Pivot: {x: 0.5, y: 0.5}\n--- !", "u!222 &1234218153790367867\nCanvasRenderer:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218153790367871}\n m_CullTransparentMesh: 0\n--- !", "u!114 &1234218153790367866\nMonoBehaviour:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218153790367871}\n m_Enabled: 1\n m_EditorHideFlags: 0\n m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}\n m_Name: \n m_EditorClassIdentifier: \n m_Material: {fileID: 0}\n m_Color: {r: 0.4, g: 0.8, b: 1, a: 1}\n m_RaycastTarget: 1\n m_OnCullStateChanged:\n m_PersistentCalls:\n m_Calls: []\n m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}\n m_Type: 1\n m_PreserveAspect: 0\n m_FillCenter: 1\n m_FillMethod: 4\n m_FillAmount: 1\n m_FillClockwise: 1\n m_FillOrigin: 0\n m_UseSpriteMesh: 0\n--- !", "u!114 &1234218153790367869\nMonoBehaviour:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218153790367871}\n m_Enabled: 1\n m_EditorHideFlags: 0\n m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}\n m_Name: \n m_EditorClassIdentifier: \n m_Navigation:\n m_Mode: 3\n m_SelectOnUp: {fileID: 0}\n m_SelectOnDown: {fileID: 0}\n m_SelectOnLeft: {fileID: 0}\n m_SelectOnRight: {fileID: 0}\n m_Transition: 1\n m_Colors:\n m_NormalColor: {r: 1, g: 1, b: 1, a: 1}\n m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}\n m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}\n m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}\n m_ColorMultiplier: 1\n m_FadeDuration: 0.1\n m_SpriteState:\n m_HighlightedSprite: {fileID: 0}\n m_PressedSprite: {fileID: 0}\n m_DisabledSprite: {fileID: 0}\n m_AnimationTriggers:\n m_NormalTrigger: Normal\n m_HighlightedTrigger: Highlighted\n m_PressedTrigger: Pressed\n m_DisabledTrigger: Disabled\n m_Interactable: 1\n m_TargetGraphic: {fileID: 1234218153790367866}\n m_OnClick:\n m_PersistentCalls:\n m_Calls:\n - m_Target: {fileID: 0}\n m_MethodName: ToggleTransition\n m_Mode: 1\n m_Arguments:\n m_ObjectArgument: {fileID: 0}\n m_ObjectArgumentAssemblyTypeName: UnityEngine.", "Object, UnityEngine\n m_IntArgument: 0\n m_FloatArgument: 0\n m_StringArgument: \n m_BoolArgument: 0\n m_CallState: 2\n--- !", "u!114 &1234218153790367864\nMonoBehaviour:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218153790367871}\n m_Enabled: 1\n m_EditorHideFlags: 0\n m_Script: {fileID: 11500000, guid: aef1d5e91a2194deba3594c88de9535c, type: 3}\n m_Name: \n m_EditorClassIdentifier: \n ShowDebugOverlay: 1\n--- !", "u!1 &1234218154690601616\nGameObject:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n serializedVersion: 6\n m_Component:\n - component: {fileID: 1234218154690601617}\n - component: {fileID: 1234218154690601615}\n - component: {fileID: 1234218154690601614}\n m_Layer: 5\n m_Name: DebugConsole\n m_TagString: Untagged\n m_Icon: {fileID: 0}\n m_NavMeshLayer: 0\n m_StaticEditorFlags: 0\n m_IsActive: 1\n--- !", "u!224 &1234218154690601617\nRectTransform:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218154690601616}\n m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}\n m_LocalPosition: {x: 0, y: 0, z: 0}\n m_LocalScale: {x: 0.95, y: 1, z: 1}\n m_Children: []\n m_Father: {fileID: 1234218153790367868}\n m_RootOrder: 0\n m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}\n m_AnchorMin: {x: 0, y: 0}\n m_AnchorMax: {x: 1, y: 1}\n m_AnchoredPosition: {x: 0, y: 0}\n m_SizeDelta: {x: 0, y: 0}\n m_Pivot: {x: 0.5, y: 0.5}\n--- !", "u!222 &1234218154690601615\nCanvasRenderer:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218154690601616}\n m_CullTransparentMesh: 0\n--- !", "u!114 &1234218154690601614\nMonoBehaviour:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218154690601616}\n m_Enabled: 1\n m_EditorHideFlags: 0\n m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}\n m_Name: \n m_EditorClassIdentifier: \n m_Material: {fileID: 0}\n m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}\n m_RaycastTarget: 1\n m_OnCullStateChanged:\n m_PersistentCalls:\n m_Calls: []\n m_FontData:\n m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}\n m_FontSize: 32\n m_FontStyle: 1\n m_BestFit: 0\n m_MinSize: 2\n m_MaxSize: 40\n m_Alignment: 3\n m_AlignByGeometry: 0\n m_RichText: 1\n m_HorizontalOverflow: 0\n m_VerticalOverflow: 0\n m_LineSpacing: 1\n m_Text: \n--- !", "u!1 &1234218154926792843\nGameObject:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n serializedVersion: 6\n m_Component:\n - component: {fileID: 1234218154926792839}\n - component: {fileID: 1234218154926792838}\n - component: {fileID: 1234218154926792841}\n - component: {fileID: 1234218154926792840}\n m_Layer: 5\n m_Name: DebugPanel\n m_TagString: Untagged\n m_Icon: {fileID: 0}\n m_NavMeshLayer: 0\n m_StaticEditorFlags: 0\n m_IsActive: 1\n--- !", "u!224 &1234218154926792839\nRectTransform:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218154926792843}\n m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}\n m_LocalPosition: {x: 0, y: 0, z: 0}\n m_LocalScale: {x: 0, y: 0, z: 0}\n m_Children:\n - {fileID: 1234218153790367868}\n m_Father: {fileID: 0}\n m_RootOrder: 0\n m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}\n m_AnchorMin: {x: 0, y: 0}\n m_AnchorMax: {x: 0, y: 0}\n m_AnchoredPosition: {x: 0, y: 0}\n m_SizeDelta: {x: 0, y: 0}\n m_Pivot: {x: 0, y: 0}\n--- !", "u!223 &1234218154926792838\nCanvas:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218154926792843}\n m_Enabled: 1\n serializedVersion: 3\n m_RenderMode: 0\n m_Camera: {fileID: 0}\n m_PlaneDistance: 100\n m_PixelPerfect: 0\n m_ReceivesEvents: 1\n m_OverrideSorting: 0\n m_OverridePixelPerfect: 0\n m_SortingBucketNormalizedSize: 0\n m_AdditionalShaderChannelsFlag: 0\n m_SortingLayerID: 0\n m_SortingOrder: 0\n m_TargetDisplay: 0\n--- !", "u!114 &1234218154926792841\nMonoBehaviour:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218154926792843}\n m_Enabled: 1\n m_EditorHideFlags: 0\n m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3}\n m_Name: \n m_EditorClassIdentifier: \n m_UiScaleMode: 0\n m_ReferencePixelsPerUnit: 100\n m_ScaleFactor: 1\n m_ReferenceResolution: {x: 800, y: 600}\n m_ScreenMatchMode: 0\n m_MatchWidthOrHeight: 0\n m_PhysicalUnit: 3\n m_FallbackScreenDPI: 96\n m_DefaultSpriteDPI: 96\n m_DynamicPixelsPerUnit: 1\n--- !", "u!114 &1234218154926792840\nMonoBehaviour:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_GameObject: {fileID: 1234218154926792843}\n m_Enabled: 1\n m_EditorHideFlags: 0\n m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3}\n m_Name: \n m_EditorClassIdentifier: \n m_IgnoreReversedGraphics: 1\n m_BlockingObjects: 0\n m_BlockingMask:\n serializedVersion: 2\n m_Bits: 4294967295\n" ]
{ "pile_set_name": "Github" }
[ 0.0625, 0, 0, 0.003484320557491289, 0.0015290519877675841, 0.004032258064516129, 0, 0.0020325203252032522, 0.006211180124223602, 0, 0.004123711340206186, 0.001644736842105263, 0.004032258064516129, 0, 0.003787878787878788, 0.0016286644951140066, 0.001841620626151013, 0, 0 ]
0.005097
5
[ { "analysis_explanation": null, "end": 1913, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 1903 }, { "analysis_explanation": null, "end": 2829, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 2817 }, { "analysis_explanation": null, "end": 6052, "entity_type": "PERSON", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 6042 }, { "analysis_explanation": null, "end": 35, "entity_type": "URL", "recognition_metadata": { "recognizer_identifier": "UrlRecognizer_140094861343568", "recognizer_name": "UrlRecognizer" }, "score": 0.5, "start": 24 }, { "analysis_explanation": null, "end": 2568, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 2558 }, { "analysis_explanation": null, "end": 2926, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 2917 }, { "analysis_explanation": null, "end": 2940, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 2931 }, { "analysis_explanation": null, "end": 2954, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 2945 }, { "analysis_explanation": null, "end": 2996, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 2986 }, { "analysis_explanation": null, "end": 3011, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 3001 }, { "analysis_explanation": null, "end": 3026, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 3016 }, { "analysis_explanation": null, "end": 3069, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 3059 }, { "analysis_explanation": null, "end": 3084, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 3074 }, { "analysis_explanation": null, "end": 3099, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 3089 }, { "analysis_explanation": null, "end": 8522, "entity_type": "PHONE_NUMBER", "recognition_metadata": { "recognizer_identifier": "PhoneRecognizer_140094861343232", "recognizer_name": "PhoneRecognizer" }, "score": 0.4, "start": 8512 }, { "analysis_explanation": null, "end": 1811, "entity_type": "US_SSN", "recognition_metadata": { "recognizer_identifier": "UsSsnRecognizer_140094861024368", "recognizer_name": "UsSsnRecognizer" }, "score": 0.05, "start": 1802 }, { "analysis_explanation": null, "end": 1811, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 1802 }, { "analysis_explanation": null, "end": 1811, "entity_type": "US_PASSPORT", "recognition_metadata": { "recognizer_identifier": "UsPassportRecognizer_140094861021536", "recognizer_name": "UsPassportRecognizer" }, "score": 0.05, "start": 1802 }, { "analysis_explanation": null, "end": 2568, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 2558 }, { "analysis_explanation": null, "end": 2996, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 2988 }, { "analysis_explanation": null, "end": 3011, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 3003 }, { "analysis_explanation": null, "end": 3026, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 3018 }, { "analysis_explanation": null, "end": 3069, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 3061 }, { "analysis_explanation": null, "end": 3084, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 3076 }, { "analysis_explanation": null, "end": 3099, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 3091 }, { "analysis_explanation": null, "end": 4205, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 4197 }, { "analysis_explanation": null, "end": 5950, "entity_type": "US_PASSPORT", "recognition_metadata": { "recognizer_identifier": "UsPassportRecognizer_140094861021536", "recognizer_name": "UsPassportRecognizer" }, "score": 0.05, "start": 5941 }, { "analysis_explanation": null, "end": 5950, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 5941 }, { "analysis_explanation": null, "end": 5950, "entity_type": "US_SSN", "recognition_metadata": { "recognizer_identifier": "UsSsnRecognizer_140094861024368", "recognizer_name": "UsSsnRecognizer" }, "score": 0.05, "start": 5941 }, { "analysis_explanation": null, "end": 6091, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 6083 }, { "analysis_explanation": null, "end": 6106, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 6098 }, { "analysis_explanation": null, "end": 6121, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 6113 }, { "analysis_explanation": null, "end": 8522, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 8512 }, { "analysis_explanation": null, "end": 9162, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 9152 }, { "analysis_explanation": null, "end": 9370, "entity_type": "US_BANK_NUMBER", "recognition_metadata": { "recognizer_identifier": "UsBankRecognizer_140094861022736", "recognizer_name": "UsBankRecognizer" }, "score": 0.05, "start": 9360 }, { "analysis_explanation": null, "end": 1811, "entity_type": "AU_TFN", "recognition_metadata": { "recognizer_identifier": "AuTfnRecognizer_140094861022688", "recognizer_name": "AuTfnRecognizer" }, "score": 0.01, "start": 1802 }, { "analysis_explanation": null, "end": 1811, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 1802 }, { "analysis_explanation": null, "end": 1811, "entity_type": "AU_ACN", "recognition_metadata": { "recognizer_identifier": "AuAcnRecognizer_140094861021344", "recognizer_name": "AuAcnRecognizer" }, "score": 0.01, "start": 1802 }, { "analysis_explanation": null, "end": 2568, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 2558 }, { "analysis_explanation": null, "end": 2926, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 2919 }, { "analysis_explanation": null, "end": 2940, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 2933 }, { "analysis_explanation": null, "end": 2954, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 2947 }, { "analysis_explanation": null, "end": 2996, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 2988 }, { "analysis_explanation": null, "end": 3011, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 3003 }, { "analysis_explanation": null, "end": 3026, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 3018 }, { "analysis_explanation": null, "end": 3069, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 3061 }, { "analysis_explanation": null, "end": 3084, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 3076 }, { "analysis_explanation": null, "end": 3099, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 3091 }, { "analysis_explanation": null, "end": 3113, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 3106 }, { "analysis_explanation": null, "end": 4205, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 4197 }, { "analysis_explanation": null, "end": 5950, "entity_type": "AU_TFN", "recognition_metadata": { "recognizer_identifier": "AuTfnRecognizer_140094861022688", "recognizer_name": "AuTfnRecognizer" }, "score": 0.01, "start": 5941 }, { "analysis_explanation": null, "end": 5950, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 5941 }, { "analysis_explanation": null, "end": 5950, "entity_type": "AU_ACN", "recognition_metadata": { "recognizer_identifier": "AuAcnRecognizer_140094861021344", "recognizer_name": "AuAcnRecognizer" }, "score": 0.01, "start": 5941 }, { "analysis_explanation": null, "end": 6091, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 6083 }, { "analysis_explanation": null, "end": 6106, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 6098 }, { "analysis_explanation": null, "end": 6121, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 6113 }, { "analysis_explanation": null, "end": 8522, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 8512 }, { "analysis_explanation": null, "end": 9162, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 9152 }, { "analysis_explanation": null, "end": 9370, "entity_type": "AU_MEDICARE", "recognition_metadata": { "recognizer_identifier": "AuMedicareRecognizer_140094861021296", "recognizer_name": "AuMedicareRecognizer" }, "score": 0.01, "start": 9360 }, { "analysis_explanation": null, "end": 9370, "entity_type": "US_DRIVER_LICENSE", "recognition_metadata": { "recognizer_identifier": "UsLicenseRecognizer_140094861023792", "recognizer_name": "UsLicenseRecognizer" }, "score": 0.01, "start": 9360 } ]
[ "Jequitibá\n\nJequitibá is a municipality in the state of Minas Gerais in the Southeast region of Brazil.", "\n\nSee also\nList of municipalities in Minas Gerais\n\nReferences\n\nCategory:Municipalities in Minas Gerais" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.0196078431372549, 0.00980392156862745 ]
0.014706
5
[ { "analysis_explanation": null, "end": 84, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 75 }, { "analysis_explanation": null, "end": 101, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 95 }, { "analysis_explanation": null, "end": 203, "entity_type": "LOCATION", "recognition_metadata": { "recognizer_identifier": "SpacyRecognizer_140094861343280", "recognizer_name": "SpacyRecognizer" }, "score": 0.85, "start": 191 } ]
[ "Occassionaly some web browsers struggle as our site uses the latest encoding and technology. ", "Also, our site does not cater for all stamps in order to keep it simple.", "\n\nThe easiest way around this is to simply fill in the details of the stamp you require in the area below. ", "Click on the \"SEND\" button once you are finished. ", "We will email back a proof along with the price. ", "Thank you." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0 ]
0
5
[]

Dataset Card for "pii-pile-chunk3-200000-250000-tagged"

More Information needed

Downloads last month
3
Edit dataset card