@polycode-projects/the-mechanical-code-talker 2.6.1 → 2.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +46 -1
- package/corpus/LICENSES.json +14 -0
- package/corpus/child/LICENSE-NOTICE +43 -0
- package/corpus/child/README.md +79 -0
- package/corpus/child/index.json.gz +0 -0
- package/corpus/child/manifest.json +313 -0
- package/corpus/child/shards/child-00.jsonl.gz +0 -0
- package/corpus/child/shards/child-01.jsonl.gz +0 -0
- package/corpus/child/shards/child-02.jsonl.gz +0 -0
- package/corpus/child/shards/child-03.jsonl.gz +0 -0
- package/corpus/child/shards/child-04.jsonl.gz +0 -0
- package/corpus/child/shards/child-05.jsonl.gz +0 -0
- package/corpus/child/shards/child-06.jsonl.gz +0 -0
- package/corpus/child/shards/child-07.jsonl.gz +0 -0
- package/corpus/child/shards/child-08.jsonl.gz +0 -0
- package/corpus/child/shards/child-09.jsonl.gz +0 -0
- package/corpus/child/shards/child-0a.jsonl.gz +0 -0
- package/corpus/child/shards/child-0b.jsonl.gz +0 -0
- package/corpus/child/shards/child-0c.jsonl.gz +0 -0
- package/corpus/child/shards/child-0d.jsonl.gz +0 -0
- package/corpus/child/shards/child-0e.jsonl.gz +0 -0
- package/corpus/child/shards/child-0f.jsonl.gz +0 -0
- package/corpus/child/shards/child-10.jsonl.gz +0 -0
- package/corpus/child/shards/child-11.jsonl.gz +0 -0
- package/corpus/child/shards/child-12.jsonl.gz +0 -0
- package/corpus/child/shards/child-13.jsonl.gz +0 -0
- package/corpus/child/shards/child-14.jsonl.gz +0 -0
- package/corpus/child/shards/child-15.jsonl.gz +0 -0
- package/corpus/child/shards/child-16.jsonl.gz +0 -0
- package/corpus/child/shards/child-17.jsonl.gz +0 -0
- package/corpus/child/shards/child-18.jsonl.gz +0 -0
- package/corpus/child/shards/child-19.jsonl.gz +0 -0
- package/corpus/child/shards/child-1a.jsonl.gz +0 -0
- package/corpus/child/shards/child-1b.jsonl.gz +0 -0
- package/corpus/child/shards/child-1c.jsonl.gz +0 -0
- package/corpus/child/shards/child-1d.jsonl.gz +0 -0
- package/corpus/child/shards/child-1e.jsonl.gz +0 -0
- package/corpus/child/shards/child-1f.jsonl.gz +0 -0
- package/corpus/conceptnet/child-seed.mjs +169 -0
- package/corpus/conceptnet/filter-dump.mjs +69 -48
- package/corpus/worlds/README.md +26 -0
- package/corpus/worlds/index.json.gz +0 -0
- package/corpus/worlds/manifest.json +33 -0
- package/corpus/worlds/shards/ashcombe-hall.jsonl.gz +0 -0
- package/corpus/worlds/src/ashcombe-hall.jsonl +64 -0
- package/package.json +4 -1
- package/src/adapters/corpus/child-pack.mjs +115 -0
- package/src/adapters/corpus/conceptnet-map.toml +7 -0
- package/src/adapters/corpus/worlds-pack.mjs +122 -0
- package/src/domain/ask-vocab.mjs +10 -2
- package/src/domain/ask.mjs +6 -0
- package/src/domain/child-pack.mjs +79 -0
- package/src/domain/grammar/ace.mjs +77 -0
- package/src/domain/grammar/lexicon-core.json +6 -0
- package/src/domain/interpret/normalize.mjs +32 -8
- package/src/domain/memory/trust.mjs +17 -0
- package/src/domain/worlds-pack.mjs +71 -0
- package/src/services/adventure.mjs +718 -0
- package/src/services/chat.mjs +137 -31
- package/src/surfaces/web/memory-ask-browser.bundle.js +555 -46
- package/src/tools/definitions.mjs +2 -2
package/README.md
CHANGED
|
@@ -369,6 +369,51 @@ asserts the plan is exactly 2^n − 1 moves every time, and a second game
|
|
|
369
369
|
conjunction) solves with zero interpreter changes. `--render blocks` writes
|
|
370
370
|
the plan as a self-contained animated page (see "Two more surfaces" above).
|
|
371
371
|
|
|
372
|
+
## Play a game with it
|
|
373
|
+
|
|
374
|
+
Two games run inside an ordinary chat session, no setup.
|
|
375
|
+
|
|
376
|
+
**Guess the number.** Say `I'm thinking of a number between 1 and 100` and
|
|
377
|
+
tmct guesses by narrowing an interval — answer `higher`, `lower`, or
|
|
378
|
+
`correct`. It finds any number in at most 7 guesses, and if your answers
|
|
379
|
+
contradict each other it names the contradicting pair and stops rather than
|
|
380
|
+
guessing on. Say `think of a number` to swap seats: tmct commits to a secret
|
|
381
|
+
and answers your guesses honestly, reveals on request, and corrects you from
|
|
382
|
+
its own record if you claim it already said `correct`. The behaviour is
|
|
383
|
+
pinned by `test/corpus/games/guess-number.jsonl`, and the home page's demo
|
|
384
|
+
rail plays the guesser side live in your browser.
|
|
385
|
+
|
|
386
|
+
**A text adventure.** Say `start the adventure` (or `play ashcombe hall`)
|
|
387
|
+
and tmct loads a small country-house mystery from a lazily-fetched worlds
|
|
388
|
+
pack (`corpus/worlds/`) into the session's ordinary memory graph — rooms,
|
|
389
|
+
objects and people become graph facts, and the verbs (`go`, `take`, `open`,
|
|
390
|
+
`unlock`, `look`…) are taught action rules, not hard-wired code. Every move
|
|
391
|
+
writes per-turn snapshot facts, `look` is an extractive digest of the graph,
|
|
392
|
+
a blocked action declines by name, and one of the household moves on its own
|
|
393
|
+
schedule whether you are there to see it or not. The full worked mystery is
|
|
394
|
+
pinned step by step in `test/corpus/games/adventure.jsonl`.
|
|
395
|
+
|
|
396
|
+
## Learning on a miss
|
|
397
|
+
|
|
398
|
+
A question tmct cannot ground is still an honest miss — but on the cleanest
|
|
399
|
+
kind of miss (a recognised word, a clean parse, simply no facts anywhere) it
|
|
400
|
+
now consults two shipped, lazily-loaded packs before giving up:
|
|
401
|
+
|
|
402
|
+
- `corpus/child/` — 93k everyday-world triples filtered from ConceptNet by a
|
|
403
|
+
child-concept seed. Asked `what is a kettle` cold, tmct loads the term's
|
|
404
|
+
triples into memory (provenance `child:conceptnet:kettle`, ranked below
|
|
405
|
+
anything you teach) and answers from them; the next ask answers from
|
|
406
|
+
memory directly.
|
|
407
|
+
- `corpus/reference/` — 3,887 Simple English Wikipedia summaries. When the
|
|
408
|
+
triples cannot answer, a matching article answers as a cited read-out
|
|
409
|
+
(`source: reference article "Otter"…, CC BY-SA 4.0`).
|
|
410
|
+
|
|
411
|
+
Facts first, prose second; if neither pack carries the term, the turn is the
|
|
412
|
+
same honest miss it always was, byte for byte. An unknown word, a parse
|
|
413
|
+
failure, or an ambiguous reading never consults a pack at all. The gate and
|
|
414
|
+
both fallbacks are pinned by `test/corpus/reference.jsonl` and the
|
|
415
|
+
chat-lane tests beside it, and the home page demos the article path live.
|
|
416
|
+
|
|
372
417
|
## How it remembers
|
|
373
418
|
|
|
374
419
|
tmct's memory has two layers, both fed by every parsed request and response and
|
|
@@ -922,7 +967,7 @@ The remaining tools are **cold**: still served, but not billed to an agent every
|
|
|
922
967
|
| --- | --- | --- |
|
|
923
968
|
| `tmct_describe` | Locate one symbol and list its typed edges (both directions) with provenance. | `symbol` (required) |
|
|
924
969
|
| `tmct_signature` | One symbol's API surface (params, returns, raises/catches, flags, decorators, doc) without the body. | `symbol` (required) |
|
|
925
|
-
| `tmct_impact` | Transitive reverse closure over imports/calls — what breaks if a module changes, by depth, with tests. | `module` (required) |
|
|
970
|
+
| `tmct_impact` | Transitive reverse closure over imports/calls — what breaks if a module or symbol changes, by depth, with tests. | `module` (required) |
|
|
926
971
|
| `tmct_search` | Free-text/ranked lookup over the code-map to find the right module or symbol. | `query`, `kind`, `decorator`, `name` |
|
|
927
972
|
| `tmct_members` | A class's methods + attributes (file:line, decorators) in one slice. | `class` (required) |
|
|
928
973
|
| `tmct_subclasses` | A class's base classes plus the transitive set of classes that extend it. | `class` (required) |
|
package/corpus/LICENSES.json
CHANGED
|
@@ -121,6 +121,20 @@
|
|
|
121
121
|
"shareAlike": true,
|
|
122
122
|
"notice": "corpus/reference/LICENSE-NOTICE"
|
|
123
123
|
},
|
|
124
|
+
{
|
|
125
|
+
"path": "corpus/child/",
|
|
126
|
+
"upstream": "ConceptNet 5.7.0 assertions dump (conceptnet.io, Commonsense Computing Initiative), filtered to everyday child-concept triples and mapped into tmct's predicate vocabulary; the pinned dump URL and sha256 are recorded in corpus/child/manifest.json. The maintainer-owned seed that selects the rows (corpus/conceptnet/child-seed.mjs) is MPL-2.0 and copies no external word list — see that file's licence decision — but the shipped data here is ConceptNet-derived, so it carries ConceptNet's CC-BY-SA-4.0",
|
|
127
|
+
"license": "CC-BY-SA-4.0",
|
|
128
|
+
"shareAlike": true,
|
|
129
|
+
"notice": "corpus/child/LICENSE-NOTICE"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"path": "corpus/worlds/",
|
|
133
|
+
"upstream": "first-party (hand-authored game worlds for the adventure lane; original content, no text copied from any book, game or other IP)",
|
|
134
|
+
"license": "MPL-2.0",
|
|
135
|
+
"shareAlike": false,
|
|
136
|
+
"notice": "LICENSE"
|
|
137
|
+
},
|
|
124
138
|
{
|
|
125
139
|
"path": "corpus/generated/ace-surface-variants.jsonl",
|
|
126
140
|
"upstream": "mechanically generated from Open English WordNet / SemCor example sentences (CC-BY-4.0) and corpus/prose/, which includes CC-BY-SA-4.0 Wikipedia text",
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
LICENSE NOTICE — corpus/child/
|
|
2
|
+
==============================
|
|
3
|
+
|
|
4
|
+
The shard and index files in this directory are a filtered, relation-mapped
|
|
5
|
+
excerpt of ConceptNet 5.7.0, and are licensed under the Creative Commons
|
|
6
|
+
Attribution-ShareAlike 4.0 International License (CC-BY-SA 4.0), NOT under this
|
|
7
|
+
repository's MPL-2.0 — exactly like corpus/conceptnet/slice.jsonl.
|
|
8
|
+
|
|
9
|
+
https://creativecommons.org/licenses/by-sa/4.0/
|
|
10
|
+
|
|
11
|
+
Attribution
|
|
12
|
+
-----------
|
|
13
|
+
|
|
14
|
+
This work includes data from ConceptNet 5, compiled by the Commonsense
|
|
15
|
+
Computing Initiative and freely available under CC-BY-SA 4.0 from
|
|
16
|
+
https://conceptnet.io. The included data was created by contributors to
|
|
17
|
+
Commonsense Computing projects, contributors to Wikimedia projects, Games with
|
|
18
|
+
a Purpose, Princeton University's WordNet, DBPedia, OpenCyc, and Umbel.
|
|
19
|
+
|
|
20
|
+
Source and reproduction
|
|
21
|
+
-----------------------
|
|
22
|
+
|
|
23
|
+
Built by scripts/fetch-child-corpus.mjs from the pinned ConceptNet 5.7.0
|
|
24
|
+
assertions dump recorded in manifest.json (URL, mirror and sha256). The filter
|
|
25
|
+
(child-concept seed match + canonical relations + /r/NotCapableOf + quality
|
|
26
|
+
pass + size budget) is described in that script and is reproducible: same dump
|
|
27
|
+
in, same bytes out.
|
|
28
|
+
|
|
29
|
+
The child SEED that selects these rows
|
|
30
|
+
(corpus/conceptnet/child-seed.mjs) is a maintainer-owned, hand-authored word
|
|
31
|
+
list under this repository's MPL-2.0. It copies no external word list — see its
|
|
32
|
+
header for the licence decision that ruled out the published age-of-acquisition
|
|
33
|
+
lists. A seed only SELECTS which ConceptNet edges ship; the edges themselves are
|
|
34
|
+
ConceptNet's, so this directory carries ConceptNet's CC-BY-SA 4.0.
|
|
35
|
+
|
|
36
|
+
Share-alike — READ THIS BEFORE REUSING
|
|
37
|
+
--------------------------------------
|
|
38
|
+
|
|
39
|
+
CC-BY-SA 4.0's share-alike condition is viral. If you redistribute these files
|
|
40
|
+
(modified or not), you must do so under CC-BY-SA 4.0 with this attribution. The
|
|
41
|
+
build code (scripts/fetch-child-corpus.mjs) and the seed
|
|
42
|
+
(corpus/conceptnet/child-seed.mjs) are tmct code under this repository's
|
|
43
|
+
MPL-2.0; only the data files in this directory carry CC-BY-SA 4.0.
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# corpus/child/
|
|
2
|
+
|
|
3
|
+
The lazy CHILD triples pack: everyday ConceptNet concepts a young child knows,
|
|
4
|
+
keyed on `normFactTerm` and loaded ONE shard at a time on a clean miss
|
|
5
|
+
(src/adapters/corpus/child-pack.mjs). Unlike the tech slice
|
|
6
|
+
(corpus/conceptnet/slice.jsonl, a bulk import), this pack is consulted lazily —
|
|
7
|
+
the chat miss-cascade calls the provider for a missed term, appends the term's
|
|
8
|
+
triples, and answers from the store.
|
|
9
|
+
|
|
10
|
+
Layout (mirrors corpus/reference/):
|
|
11
|
+
|
|
12
|
+
- `index.json.gz` — `{ term: { s, t, n } }`: shard name, canonical term key
|
|
13
|
+
(a normFactTerm fixed point), fact count.
|
|
14
|
+
- `shards/child-00.jsonl.gz` … — one JSON row per term:
|
|
15
|
+
`{ term, facts: [{ subject, predicate, object, weight? }, …] }`, sharded by
|
|
16
|
+
the term's FNV-1a first byte mod 32
|
|
17
|
+
(src/domain/child-pack.mjs). Each edge is keyed under BOTH endpoints, so a
|
|
18
|
+
miss on a hyponym and a miss on its class each return what they need.
|
|
19
|
+
- `manifest.json` — the pinned dump (URL, mirror, sha256), the seed, counts,
|
|
20
|
+
budgets, the acceptance metrics, and a sha256 for every emitted file.
|
|
21
|
+
- `LICENSE-NOTICE` — CC-BY-SA 4.0; read it before reusing these files.
|
|
22
|
+
|
|
23
|
+
47267 terms, 93161 keyed facts. Built 2026-07-18.
|
|
24
|
+
|
|
25
|
+
Predicates are already mapped into tmct's vocabulary
|
|
26
|
+
(conceptnet-map.toml): `rdfs:subClassOf`, `mgx:capableOf`,
|
|
27
|
+
`mgxneg:capableOf` (from /r/NotCapableOf — the defeasible-negation data), and
|
|
28
|
+
the other object properties. The weak relation (`mgx:relatedTo`) and the
|
|
29
|
+
ace="none" relations are dropped, so every fact sits at the corpus trust tier
|
|
30
|
+
(0.7); a fact learned from this pack carries a `child:conceptnet:<term>`
|
|
31
|
+
provenance tag (src/domain/child-pack.mjs), parsed back to a corpus Source by
|
|
32
|
+
memory/trust.mjs.
|
|
33
|
+
|
|
34
|
+
## The read contract (for the chat miss-cascade wave)
|
|
35
|
+
|
|
36
|
+
On a clean miss for term T:
|
|
37
|
+
|
|
38
|
+
1. compute the lookup key the SAME way the reference-pack lookup does — the
|
|
39
|
+
lexicon lemma of T (`cleanMissReferenceTerm`), so one lemma fold serves both
|
|
40
|
+
packs and a plural miss ("penguins") folds to its singular. The loader
|
|
41
|
+
additionally normFactTerm-folds case and a leading article, so passing the
|
|
42
|
+
raw term also works for those; it does NOT singularise (that is the caller's
|
|
43
|
+
lemma fold, exactly as for the reference pack);
|
|
44
|
+
2. call the provider: `getChildPackProvider(env).lookup(k)` → `{ term, facts }`
|
|
45
|
+
or `null` (a null is the ordinary honest miss — the pack never throws at a
|
|
46
|
+
caller);
|
|
47
|
+
3. for each fact `{ subject, predicate, object, weight? }`, `appendFacts` it
|
|
48
|
+
with provenance `childProvenanceTag(T)` = `child:conceptnet:<lemma>` —
|
|
49
|
+
corpus tier, 0.7 (memory/trust.mjs parses it to { kind:"corpus",
|
|
50
|
+
name:"conceptnet" }, the shared ConceptNet Source);
|
|
51
|
+
4. answer from the store (the appended edges make the base rate real: kinds of
|
|
52
|
+
bird, and `bird can fly` from data rather than one hand-written row).
|
|
53
|
+
|
|
54
|
+
The pack does NOT produce the penguin's exception on its own; that still comes
|
|
55
|
+
from a taught fact or from a /r/NotCapableOf edge where ConceptNet happens to
|
|
56
|
+
carry one. A wider seed makes the base rate real and the positive default
|
|
57
|
+
findable; the specific exception remains what tmct is taught.
|
|
58
|
+
|
|
59
|
+
## Acceptance metrics
|
|
60
|
+
|
|
61
|
+
Measured by `node scripts/measure-child-corpus.mjs` (the script IS the
|
|
62
|
+
acceptance test — the plan's hand-counted baseline drifted once). Numbers below
|
|
63
|
+
are for this committed pack:
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
Measured over this pack: 69620 facts
|
|
67
|
+
kinds of bird 1881 [abbott's booby, abyssinian woodpecker, acadian flycatcher, accipiter, acorn woodpecker, acridotheres, acrocephalus, actitis, adélie penguin, african black duck, african cuckoo hawk, african finfoot, african fish eagle, african marsh harrier, african penguin, african pygmy goose, african sacred ibis, african skimmer, aix, akiapola au]
|
|
68
|
+
capabilities on birds 71 [bird can attempt to fly, chicken can become food, bird can build nest, bird can call with chirps, bird can chirp, bird can eat grasshopper, bird can experience flight, bird can eye fish, bird can fall from sky, bird can fly, bird can fly high, bird can head south, bird can kill fish, bird can land on beach, bird can land on branch, bird can land on tree, bird can learn to fly, bird can listen to insect, bird can person's pet, bird can pet]
|
|
69
|
+
things that can fly 39 [animals, ants, bat, bats, bats and birds, bee, beetles, bird, butterfly, doves, dragon, dragonfly, flies, frisbee, geese, gnat, goose, helicoptors, hoatzins, insects]
|
|
70
|
+
things that cannot fly 2 [bunnies, pigs]
|
|
71
|
+
bird-kinds that fly 3 [goose, kite, tweety]
|
|
72
|
+
bird-kinds that cannot fly 0 [(none)]
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## Rebuild
|
|
76
|
+
|
|
77
|
+
`npm run gen:child-corpus` (reads the pinned dump from
|
|
78
|
+
~/.cache/tmct-conceptnet/ when its sha256 matches, else downloads it). Same
|
|
79
|
+
dump in, same bytes out.
|
|
Binary file
|
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"generated": "by scripts/fetch-child-corpus.mjs",
|
|
4
|
+
"seed": {
|
|
5
|
+
"file": "corpus/conceptnet/child-seed.mjs",
|
|
6
|
+
"terms": 702,
|
|
7
|
+
"aoaTargetYears": 8,
|
|
8
|
+
"license": "MPL-2.0 (maintainer-owned; copies no external word list)"
|
|
9
|
+
},
|
|
10
|
+
"dump": {
|
|
11
|
+
"url": "https://s3.amazonaws.com/conceptnet/downloads/2019/edges/conceptnet-assertions-5.7.0.csv.gz",
|
|
12
|
+
"mirror": "https://github.com/commonsense/conceptnet5/wiki/Downloads",
|
|
13
|
+
"date": "2019-07-03",
|
|
14
|
+
"version": "5.7.0",
|
|
15
|
+
"sha256": "accd65fe94038584295574ddc26e1500c1919c8c4532bf771811cafd0948af7e"
|
|
16
|
+
},
|
|
17
|
+
"built": "2026-07-18",
|
|
18
|
+
"pack": "conceptnet",
|
|
19
|
+
"shardCount": 32,
|
|
20
|
+
"counts": {
|
|
21
|
+
"terms": 47267,
|
|
22
|
+
"facts": 93161,
|
|
23
|
+
"shards": 32
|
|
24
|
+
},
|
|
25
|
+
"budgets": {
|
|
26
|
+
"facts": {
|
|
27
|
+
"used": 93161,
|
|
28
|
+
"max": 120000
|
|
29
|
+
},
|
|
30
|
+
"shardsGzBytes": {
|
|
31
|
+
"used": 1104132,
|
|
32
|
+
"max": 3145728
|
|
33
|
+
},
|
|
34
|
+
"indexGzBytes": {
|
|
35
|
+
"used": 466600,
|
|
36
|
+
"max": 716800
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"acceptance": {
|
|
40
|
+
"totalFacts": 69620,
|
|
41
|
+
"kindsOfBird": {
|
|
42
|
+
"count": 1881,
|
|
43
|
+
"sample": [
|
|
44
|
+
"abbott's booby",
|
|
45
|
+
"abyssinian woodpecker",
|
|
46
|
+
"acadian flycatcher",
|
|
47
|
+
"accipiter",
|
|
48
|
+
"acorn woodpecker",
|
|
49
|
+
"acridotheres",
|
|
50
|
+
"acrocephalus",
|
|
51
|
+
"actitis",
|
|
52
|
+
"adélie penguin",
|
|
53
|
+
"african black duck",
|
|
54
|
+
"african cuckoo hawk",
|
|
55
|
+
"african finfoot",
|
|
56
|
+
"african fish eagle",
|
|
57
|
+
"african marsh harrier",
|
|
58
|
+
"african penguin",
|
|
59
|
+
"african pygmy goose",
|
|
60
|
+
"african sacred ibis",
|
|
61
|
+
"african skimmer",
|
|
62
|
+
"aix",
|
|
63
|
+
"akiapola au"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"capabilitiesOnBirds": {
|
|
67
|
+
"count": 71,
|
|
68
|
+
"sample": [
|
|
69
|
+
"bird can attempt to fly",
|
|
70
|
+
"chicken can become food",
|
|
71
|
+
"bird can build nest",
|
|
72
|
+
"bird can call with chirps",
|
|
73
|
+
"bird can chirp",
|
|
74
|
+
"bird can eat grasshopper",
|
|
75
|
+
"bird can experience flight",
|
|
76
|
+
"bird can eye fish",
|
|
77
|
+
"bird can fall from sky",
|
|
78
|
+
"bird can fly",
|
|
79
|
+
"bird can fly high",
|
|
80
|
+
"bird can head south",
|
|
81
|
+
"bird can kill fish",
|
|
82
|
+
"bird can land on beach",
|
|
83
|
+
"bird can land on branch",
|
|
84
|
+
"bird can land on tree",
|
|
85
|
+
"bird can learn to fly",
|
|
86
|
+
"bird can listen to insect",
|
|
87
|
+
"bird can person's pet",
|
|
88
|
+
"bird can pet"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
"thingsThatCanFly": {
|
|
92
|
+
"count": 39,
|
|
93
|
+
"sample": [
|
|
94
|
+
"animals",
|
|
95
|
+
"ants",
|
|
96
|
+
"bat",
|
|
97
|
+
"bats",
|
|
98
|
+
"bats and birds",
|
|
99
|
+
"bee",
|
|
100
|
+
"beetles",
|
|
101
|
+
"bird",
|
|
102
|
+
"butterfly",
|
|
103
|
+
"doves",
|
|
104
|
+
"dragon",
|
|
105
|
+
"dragonfly",
|
|
106
|
+
"flies",
|
|
107
|
+
"frisbee",
|
|
108
|
+
"geese",
|
|
109
|
+
"gnat",
|
|
110
|
+
"goose",
|
|
111
|
+
"helicoptors",
|
|
112
|
+
"hoatzins",
|
|
113
|
+
"insects"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
"thingsThatCannotFly": {
|
|
117
|
+
"count": 2,
|
|
118
|
+
"sample": [
|
|
119
|
+
"bunnies",
|
|
120
|
+
"pigs"
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
"birdsThatFly": {
|
|
124
|
+
"count": 3,
|
|
125
|
+
"sample": [
|
|
126
|
+
"goose",
|
|
127
|
+
"kite",
|
|
128
|
+
"tweety"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
"birdsThatCannotFly": {
|
|
132
|
+
"count": 0,
|
|
133
|
+
"sample": []
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"files": [
|
|
137
|
+
{
|
|
138
|
+
"file": "index.json.gz",
|
|
139
|
+
"bytes": 466600,
|
|
140
|
+
"sha256": "8c5940d2f888841a89a6d891c034a357d9f568175610d7ba723d82c0b3789375"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"file": "LICENSE-NOTICE",
|
|
144
|
+
"bytes": 2042,
|
|
145
|
+
"sha256": "2b77524ec21f42521702f428eb227b03872d442facaf5436073b411b0ac8ade6"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"file": "README.md",
|
|
149
|
+
"bytes": 4728,
|
|
150
|
+
"sha256": "4bc27cc68ece52930fee4fc18fd65966ebdc1fe9e39d9c5497a579e9a7de7ebb"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"file": "shards/child-00.jsonl.gz",
|
|
154
|
+
"bytes": 32103,
|
|
155
|
+
"sha256": "9ccb587b8bcbaf4cd250620b7455b347ad48632c9a74a58576ad53bea7661cba"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"file": "shards/child-01.jsonl.gz",
|
|
159
|
+
"bytes": 33579,
|
|
160
|
+
"sha256": "72cc98f950493cd74c108275fc4fd2375673d4bb518ef5dc18a792e2e0dc4314"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"file": "shards/child-02.jsonl.gz",
|
|
164
|
+
"bytes": 39506,
|
|
165
|
+
"sha256": "66509505127314f56ba97d91bf8eb16f8041e79372967686fe4bd12f7836fa12"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"file": "shards/child-03.jsonl.gz",
|
|
169
|
+
"bytes": 31952,
|
|
170
|
+
"sha256": "718cf034eea6eedd8dfa28308b88707b783188096740493cfe9dcc2fc099715c"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"file": "shards/child-04.jsonl.gz",
|
|
174
|
+
"bytes": 33426,
|
|
175
|
+
"sha256": "789c98cac46582609bd0f8fe10714992b6142845ceef7595d1344817b3828a22"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"file": "shards/child-05.jsonl.gz",
|
|
179
|
+
"bytes": 35162,
|
|
180
|
+
"sha256": "76145b77126d0ad589de1024036d56e363a205ae1d214407f377328adbb78e38"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"file": "shards/child-06.jsonl.gz",
|
|
184
|
+
"bytes": 36407,
|
|
185
|
+
"sha256": "2eef507004137e8ce92d56e043e8c5e4065c9a03ae00022422ee36fbd3cfcbba"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"file": "shards/child-07.jsonl.gz",
|
|
189
|
+
"bytes": 33893,
|
|
190
|
+
"sha256": "9a889f73e18a800725333df87702642d658a442e5b957dfb40eb7c70127ae5cc"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"file": "shards/child-08.jsonl.gz",
|
|
194
|
+
"bytes": 34136,
|
|
195
|
+
"sha256": "d8bb02bcc35d0303178f296ca47251fe0133227553b806ebda459377fdd57fcd"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"file": "shards/child-09.jsonl.gz",
|
|
199
|
+
"bytes": 35965,
|
|
200
|
+
"sha256": "7d86341fedf002c8838bccd766e425b0a67f502d031fd53d4e07f1c6f12aa19f"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"file": "shards/child-0a.jsonl.gz",
|
|
204
|
+
"bytes": 34735,
|
|
205
|
+
"sha256": "206a813208895488b15f4b57ae142472b23eedc98337c1960bc002247ab1ec19"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"file": "shards/child-0b.jsonl.gz",
|
|
209
|
+
"bytes": 32343,
|
|
210
|
+
"sha256": "13e94bddc1c1dfadb3d15f3cf437f8bc6fdee4aba34e146f855b592dfc3cb29e"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"file": "shards/child-0c.jsonl.gz",
|
|
214
|
+
"bytes": 32843,
|
|
215
|
+
"sha256": "5004d2abe2a52616bad4b7b55989f3d4feea8c6bb156154be700d6d5102fc1a4"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"file": "shards/child-0d.jsonl.gz",
|
|
219
|
+
"bytes": 33100,
|
|
220
|
+
"sha256": "fb16a8d7812e93f5d7b54792ae376f424c03cb67bb38205e9a352fd3761f862e"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"file": "shards/child-0e.jsonl.gz",
|
|
224
|
+
"bytes": 37434,
|
|
225
|
+
"sha256": "34ed35347c1e05d662791f547dc487a1ea106a144c6722105249113ae17144e0"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"file": "shards/child-0f.jsonl.gz",
|
|
229
|
+
"bytes": 33042,
|
|
230
|
+
"sha256": "128fe45227c40a020b017d62ed267bbbc537308903a637bed7e3a730c77167a5"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"file": "shards/child-10.jsonl.gz",
|
|
234
|
+
"bytes": 36325,
|
|
235
|
+
"sha256": "f464aa705b6f805e939d8b755e1b7459dfa1567d227d42fbb45966cca77911b2"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"file": "shards/child-11.jsonl.gz",
|
|
239
|
+
"bytes": 37037,
|
|
240
|
+
"sha256": "9d42260cd01eb000bfd05f3589162e02b473a8e0d67153164f6309a64161af1c"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"file": "shards/child-12.jsonl.gz",
|
|
244
|
+
"bytes": 34979,
|
|
245
|
+
"sha256": "007e234d9ef074bbf2ca01e974b78cf92275c395709d8ceca4f9143610db8a35"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"file": "shards/child-13.jsonl.gz",
|
|
249
|
+
"bytes": 35807,
|
|
250
|
+
"sha256": "61157570ac6a5744c12852f8f918315efc388c099ca931f4ddd51ed7a968fd15"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"file": "shards/child-14.jsonl.gz",
|
|
254
|
+
"bytes": 34486,
|
|
255
|
+
"sha256": "c06be6bfc64cfeb385b2e6654813b3bafc885242ff67157ef36f3cb319603fdf"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"file": "shards/child-15.jsonl.gz",
|
|
259
|
+
"bytes": 35086,
|
|
260
|
+
"sha256": "684f17882e97c9a00008d7601ebce936e9acadea655ae79a84ade493db071da1"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"file": "shards/child-16.jsonl.gz",
|
|
264
|
+
"bytes": 36486,
|
|
265
|
+
"sha256": "a730cd4e15f0dd221a0b1de8a4f7d675dfb51aa330d4f5bd5d31362eb3261e04"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"file": "shards/child-17.jsonl.gz",
|
|
269
|
+
"bytes": 35087,
|
|
270
|
+
"sha256": "f3aede1ef18acc53e96791eb05511ce7cd1e9fadc78901913026350c26ddb40a"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"file": "shards/child-18.jsonl.gz",
|
|
274
|
+
"bytes": 33768,
|
|
275
|
+
"sha256": "ba858cd656f5e27c5a6afaf47d1932eb12a568abe24ab88103eea043051320ac"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"file": "shards/child-19.jsonl.gz",
|
|
279
|
+
"bytes": 35857,
|
|
280
|
+
"sha256": "30ab1d0dfb61decd5d43e7f30e5a7d35e4360d3fa4b8de2e2792d213fe0fa040"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"file": "shards/child-1a.jsonl.gz",
|
|
284
|
+
"bytes": 32457,
|
|
285
|
+
"sha256": "835831e995b3457de2420e6980b4d32dd8dedeefeccfa9ad8437b709d7615260"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"file": "shards/child-1b.jsonl.gz",
|
|
289
|
+
"bytes": 33232,
|
|
290
|
+
"sha256": "cc703f2de00ce184271d75c54c199df6d0de5628386458001c97b1e440b2ff35"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"file": "shards/child-1c.jsonl.gz",
|
|
294
|
+
"bytes": 34490,
|
|
295
|
+
"sha256": "92ed3c10f60d74c5273734c3dd200977be3902c2afb2d53932e41419585ae1fa"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"file": "shards/child-1d.jsonl.gz",
|
|
299
|
+
"bytes": 32293,
|
|
300
|
+
"sha256": "a02fd0b0c3167fd8ce2209338ca90700e48a133c0d7b169d7c5c87bdd85778ee"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"file": "shards/child-1e.jsonl.gz",
|
|
304
|
+
"bytes": 32991,
|
|
305
|
+
"sha256": "bd631352a9abdc46fc4a2d79c0134bbbd235b4dc6cc5a6af598b21aaec1d7e55"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"file": "shards/child-1f.jsonl.gz",
|
|
309
|
+
"bytes": 34125,
|
|
310
|
+
"sha256": "23e47bef6b0c9e7671155b59a117e5c94701ea38665a602af024fbf1f443143d"
|
|
311
|
+
}
|
|
312
|
+
]
|
|
313
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|