Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
bboldt
/
elcc
like
0
Size:
10M<n<100M
ArXiv:
arxiv:
2407.04158
Tags:
Synthetic
emergent communication
linguistics
DOI:
doi:10.57967/hf/2533
License:
cc-by-4.0
Dataset card
Files
Files and versions
Community
577e071
elcc
/
util
/
jsonl2json.sh
bboldt
Add nav-to-center system and random seeds for egg-disc
577e071
7 months ago
raw
Copy download link
history
blame
Safe
136 Bytes
#!/usr/bin/env bash
shopt
-s globstar
for
x
in
**/corpus.jsonl;
do
cat
$x
| jq -sc > $(
dirname
$x
)/$(
basename
$x
.jsonl).json;
done