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
a5f760c
elcc
/
util
/
jsonl2json.sh
bboldt
Initial public commit
a5f760c
7 months ago
raw
Copy download link
history
blame
Safe
117 Bytes
#!/usr/bin/env bash
for
x
in
**/corpus.jsonl;
do
cat
$x
| jq -sc > $(
dirname
$x
)/$(
basename
$x
.jsonl).json;
done