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
main
elcc
/
util
/
jsonl2json.sh
bboldt
Add system-level metadata to Croissant
e0cd172
10 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
110 Bytes
#!/usr/bin/env bash
shopt
-s globstar
for
x
in
**/corpus.jsonl;
do
cat
$x
| jq -sc >
${x%jsonl}
json;
done