Skip to main content

Data filters

Project description

dolma

Data to feed OLMo's Appetite

DOLMa logo. It's a watercolor of grape leaves with the word DOLMa in the top left.

Data and tools for generating and inspecting OLMo pre-training data.

To get started, install dolma using pip.

pip install dolma

Usage

The dolma CLI can be access using the dolma command. To see the available commands, use the --help flag.

dolma --help

At the moment, the CLI supports three commands: tag, dedupe, and mix.

For all commands, configurations can be specified from command line, or by passing a YAML or JSON file using the -c flag. For example:

dolma -c config.yaml dedupe --dedupe.name "test"

dolma tag

The tag command is used to run any of the built-in taggers on a set of documents. For example:

dolma tag \
    --experiment sample \
    --documents \
        's3://ai2-llm/pretraining-data/sources/common-crawl/test/v0/documents/**/*.json.gz' \
        's3://ai2-llm/pretraining-data/sources/common-crawl/test/v1/documents/*.json.gz' \
    --taggers random_number_v1 \
    --processes 2

This command will run the random_number_v1 tagger on all documents in the specified S3 paths. The results will be written to the s3://ai2-llm/pretraining-data/sources/common-crawl/test/v0/attributes/sample and s3://ai2-llm/pretraining-data/sources/common-crawl/test/v1/attributes/sample paths.

dolma dedupe

The dedupe command is used to deduplicate a set of documents at the attribute level using a bloom filter. For example configurations, see directory tests/config. For example:

dolma dedupe -c tests/config/dedupe-paragraphs.json

dolma mix

The mix command is used to mix documents from multiple sources, optionally filtering by attributes and/or performing string replacement. For example configurations, see directory tests/config. For example:

dolma mix -c tests/config/mixer.json

Development

Create a conda environment with Python >= 3.8. In this case, we use Python 3.10 and use Anaconda to create the environment.

conda create -n dolma python=3.10

After creating the environment, activate it and install necessary tools using the included makefile.

conda activate dolma
make setup

and restart your shell. Finally, to begin development, install the repository in editable mode using maturin.

make develop

To run tests, use the following command.

make test

You can choose to run just the Python or Rust tests by calling make test-python or make test-rust respectively.

Citation

If you use this repository, please cite it as:

@software{dolma,
    author = {{Soldaini, Luca and Lo, Kyle and Kinney, Rodney and Naik, Aakanksha and Ravichander, Abhilasha and Bhagia, Akshita and Groeneveld, Dirk and Schwenk, Dustin and Magnusson, Ian and Chandu, Khyathi}},
    license = {{Apache-2.0}},
    title = {{DOLMa}},
    url = {https://github.com/allenai/dolma}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dolma-0.6.2.tar.gz (2.0 MB view details)

Uploaded Source

Built Distributions

dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARMv7l

dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARM64

dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARMv7l

dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARM64

dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARMv7l

dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ ARM64

dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

dolma-0.6.2-cp312-cp312-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

dolma-0.6.2-cp312-cp312-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARMv7l

dolma-0.6.2-cp312-cp312-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

dolma-0.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

dolma-0.6.2-cp311-none-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.11 Windows x86-64

dolma-0.6.2-cp311-none-win32.whl (4.1 MB view details)

Uploaded CPython 3.11 Windows x86

dolma-0.6.2-cp311-cp311-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

dolma-0.6.2-cp311-cp311-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARMv7l

dolma-0.6.2-cp311-cp311-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

dolma-0.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

dolma-0.6.2-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dolma-0.6.2-cp311-cp311-macosx_10_7_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

dolma-0.6.2-cp310-none-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

dolma-0.6.2-cp310-none-win32.whl (4.1 MB view details)

Uploaded CPython 3.10 Windows x86

dolma-0.6.2-cp310-cp310-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

dolma-0.6.2-cp310-cp310-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARMv7l

dolma-0.6.2-cp310-cp310-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

dolma-0.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

dolma-0.6.2-cp310-cp310-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

dolma-0.6.2-cp310-cp310-macosx_10_7_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

dolma-0.6.2-cp39-none-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

dolma-0.6.2-cp39-none-win32.whl (4.1 MB view details)

Uploaded CPython 3.9 Windows x86

dolma-0.6.2-cp39-cp39-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

dolma-0.6.2-cp39-cp39-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARMv7l

dolma-0.6.2-cp39-cp39-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

dolma-0.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

dolma-0.6.2-cp38-none-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

dolma-0.6.2-cp38-none-win32.whl (4.1 MB view details)

Uploaded CPython 3.8 Windows x86

dolma-0.6.2-cp38-cp38-manylinux_2_28_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

dolma-0.6.2-cp38-cp38-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ ARMv7l

dolma-0.6.2-cp38-cp38-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ ARM64

dolma-0.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

File details

Details for the file dolma-0.6.2.tar.gz.

File metadata

  • Download URL: dolma-0.6.2.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for dolma-0.6.2.tar.gz
Algorithm Hash digest
SHA256 f254af372179a70b0866e9c4fa78da52fb1399349a805cd6ed5a592e55026166
MD5 3d95704993ae78c61f08b7597b900dec
BLAKE2b-256 2c544df369b42841b145074c4d62c81f89dd1202106cbd73370c568ab57a9227

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a3ca4adc0489b4b45b00e5d4de842d7d699c8ddb9bc250cdeec4a6903c03a58
MD5 be30407676d4f64170fbcfc1996eb271
BLAKE2b-256 f373a0d6d92f2ae136b28e0a9d7a80d136c8a343881d8da09f5d9bf913d15fa4

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7cabf08094661127c21036ed5c0561ab5d1b31a2a57c52b3d93e977783f9d9ab
MD5 a41f6b7bb0b4b33ada96e363ea35f5ad
BLAKE2b-256 eab23dc727e4235b6e9fe0abae480fe41ceb95c7e3ad936f273def275971a8d9

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5289376e992a480f51704a45e940c6eccb4430f7d36b4211aadf4baa5d248483
MD5 714b43003669e37562781715e4f27c1c
BLAKE2b-256 1e0f6aeb8aa0c41bede8281ebd53d57b978410512d3cada79b791a71400537bd

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fdcaafda362df15ceea953cf66d9862853e24690bd00bd98ad803377b4b69f9
MD5 36079ccfe920c7e99c5b6ee9f4199406
BLAKE2b-256 69dca8e1a164f5cf8a65e23973c3d76f411734fee866bd4e5e6de57b2a4a34ac

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24a74cf78c8413a47147df271ab31bce16d03a888e4f7e0941a3fa22d93a4eb8
MD5 c640712cf5e55ee8e265b1c5738c54bf
BLAKE2b-256 27ec365a60ef342463a9196347c42c4fbe478f71f4b085d8c5bb004a557604be

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c0fbfe9fee7814ecdcd8f461c40c7094f433ea0fe9c4b5b237488d78c4b33feb
MD5 bcade1a9cc91887e4a0431b3ff49b460
BLAKE2b-256 c9709612a1fd0db6c63e7aa641205b64eedc54caea22bf8e87641e8c19d9db55

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46b881341ae7f017bafd8a251b452f907a61d486738d107ccbde437adc79d562
MD5 927e905d56e8e4ddc8872e6471682825
BLAKE2b-256 e9a99d82e7783b14a5cec44d3737c33334d9a4bf609831521831445e5c688c8a

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5926303f20df2d2986d87a825aa0809b9e995fe45791907d4d00a49ca52e2ef0
MD5 551af4740f542f4943473f572a0da6fc
BLAKE2b-256 d474d979b63a14a813eb77cec49e64f7320a823baf87450f7b4561154be6b44b

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c745fadec98a7939609d9b6fe753410c85e88f47ea27ec1156e0ac15bcfb89c
MD5 81de2a4af282725bcd007ff2fd7f5ec4
BLAKE2b-256 978ef92b5ab1d572cbf6afbe446ebcf190bb068ca06ab6228cec6ae7845a4682

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f8bdc21718b8782b567b2fd5c30efe0886104635ed1614e3da2059ba7206a727
MD5 766710c6105525c34e9517778fac809e
BLAKE2b-256 6118cd7fd008e9ab032ceaf83472dab1c5a79e01540f27a16d5c6358fa994a58

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b9d29c9b2fe869ea3041a89ae1e173a7ee6e2707a5e20303c5530a1d8d31cf2
MD5 b15958fdc4bc52adb70749a57a691616
BLAKE2b-256 1e744e7e4e8a5bd9e3314b949c7d00fe7c2b9da5d6cf1f0f3929da745c53b79b

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58551e85a8a30ed10af220de4673d20302d44327b94556bac007d307b3006468
MD5 32aa1b15a78c8c64049fdbeb45f254e0
BLAKE2b-256 2f1323fdc412ce91f209a8eb4c020bdbbf4faa0323fbfedb74d469c5cb10adba

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 554947b10fe07f4b53e67860ddc7f2ff7df504be6aa27c34436894b146bd0462
MD5 069dd2a45342b90c8f1926d343ced471
BLAKE2b-256 75294c2fddbfbc04575f89bdd3d09a5b4fac000e61a965d3bcc74df415a95a8b

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a604b424e2cc222abdf6d5f8a6fdf35069d62d00090828adc068878ff519b5b7
MD5 6994fccc4794ab899e762dfcafeff887
BLAKE2b-256 fb9e6c51f37993b91f0d6584042bc6201388bea10b477e1964ae2ac4b7910ae0

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0fc512cc87c5e7efd6ef2d6f9f0c531ea53713e1c6d88c99f064cd045b4b001
MD5 951b06fcdc8dd957d7ce0d96e5a06476
BLAKE2b-256 f5b0979aa862c6d744cde1dabdff99448a0b3060a0d5549c67908244257d42a1

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a5c79bd4b5c80d463f1211841b33cef6682874541cea5bb3ffb6f2765ca6e0d
MD5 721b08ead483ae8d65c882c6485cefc0
BLAKE2b-256 8c11c106db9ce8e45edbac772ca342570d12f1cfc54675e7daac51942c590149

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp311-none-win_amd64.whl.

File metadata

  • Download URL: dolma-0.6.2-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for dolma-0.6.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 28494deaef2783e14411f0b4f9d9c4e5429351864b5fc28cc12bde7ca73f1bef
MD5 38aeb3a35de9148934fc37fe6f513f5c
BLAKE2b-256 97b83597d4e275ba9c942b02cd7e0bc98a4b51398ebc053ebadf55e91ba4627f

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp311-none-win32.whl.

File metadata

  • Download URL: dolma-0.6.2-cp311-none-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for dolma-0.6.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ec5cf1e1ea590800e8f8499b097edaaa352bb0d0f08a21f18ee613e796357ff7
MD5 4da855f19aa06ad8dbda774ae8dd20d2
BLAKE2b-256 0a0653e569f5f6c14b72fe5b3cfc55e9bd439915863f38ed5d3ff05b6002a9bb

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b739b49dc11654183b38c77addeb9a25314e4a26b6ea3df573c0683f0d10dfd3
MD5 ecf5e13509b9e0b44a57bdc04e230467
BLAKE2b-256 c6887e3a36540d6dbfa9bcec6181228ab340fa22d2dc4825311a383089f0f7e5

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8369222ad5e3970d5d38c9588c301b16b40961050441e365a06898780a91faa7
MD5 ac699bb144912d88320070340b6b333a
BLAKE2b-256 dcd1a702f27b7e6095875779e022cfd8beeaacf4a507635304c27a526585e26d

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8cbe269513be1a61064e42b4121309d1bd023fbcbb2a003384f0b6397bbbd455
MD5 1d562694b9a2bce562d7b3b122f2bb9f
BLAKE2b-256 6362c72d1b0b6783f4e868490835d4c19e69d029b4757a6a1a8e1dcb0a4f0ce3

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9888ff0db64e82819c032bc59a0a3d14c9d95fb181f0180f36a56d14d0674c57
MD5 a36fd0299bd63f662f780be324742ccf
BLAKE2b-256 a4513970961cc578edcf4a5dc12bec2c87a5ee7db9d9098b2eced0a578b9de45

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd7381c802e9f0dba86dcb318774d34e976593047a05c040ebc49267ed5b0892
MD5 eef2b3d496b6f2a93eed0a9c78085eba
BLAKE2b-256 979137a53053932c4e34ad9c8e9efa90d95d78bc0bcc2a130ebde3f3b01870e2

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a82ce88e4e7c0250cfdf510091091d5debbb4ccfca4cc5cdf8ff3d1d9653bea7
MD5 f40680c9b3e53215ae2304ba2f130145
BLAKE2b-256 dfe53183762e3e46890522e658121a8258d23fea7bc8d0e2ed821bfd8097e02f

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp310-none-win_amd64.whl.

File metadata

  • Download URL: dolma-0.6.2-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for dolma-0.6.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 16e1e7a78d2ef6cc91b62afe2b89568a5f47495421ba14e6428dd20e19c08267
MD5 ac7c0c691999a8b05d9c5431466d407a
BLAKE2b-256 e344ef7f91029da6699b5b3fe9aa41c8dae3b557e2fc8461a6e0c314934684c5

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp310-none-win32.whl.

File metadata

  • Download URL: dolma-0.6.2-cp310-none-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for dolma-0.6.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e0aac2496c7fc03828083fd8f99c9a77351b24f2553b449eb18e7c6d3719a361
MD5 b6bd7958217f98e023eb0c6a5184300a
BLAKE2b-256 40626958b2873c6a555ed7e777ad6b329302398255a9b012eb0dc7a59f62975b

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e2bc66a8cc5ce6f177dffbeade57d69a8cd720ca4fcedae25c5a449f9287c4b
MD5 23edeafb61a850126af030af50988697
BLAKE2b-256 9a7891b04c8f8a0aa45d67936b7ad622047c1be8f17ce2389d72411d5ebe6b8e

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 343342ee702d65a0f7018195bd1146d7dc54b91c8e91c2848093b334c8a1240e
MD5 1fd0f28305e98d063232204d6e6c0509
BLAKE2b-256 418b018dd5b2f7431ae98ec5b935623e9158d1142a03b52d16bc380cd7fb813a

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15f69cc5e84429021ea3147ad844ed424caeceb8c40ad79e95d02b593e704703
MD5 8a40c5eab1b221e03a0b96e3f4a6494c
BLAKE2b-256 020f85b2f26a1efb5e79f80dab82633cd455d0932daff664b1714aef59b2a250

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6de801855587576e2c6efbe0cf8e31b4c9ba137f1ef14a1aef21b9d7d8687ba3
MD5 261b286538a3251be38a235fc1186a92
BLAKE2b-256 8a82301d86aa4d463aa098e2c3a3e2fc3703ad605c147f8ee524608a0e61baa1

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1df1d69e80767f9e35f97e4a38f47e35c5e3b31287d9b3114c5190fba8d95423
MD5 e9bd5fe71419f2744c91a9c1ff0f99c0
BLAKE2b-256 205af3564bd1d93089796d02463f28d2055bd944d38f2b11ff4aea32fe55522b

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2c39dda5787409eb900eb6401334b77e7de80aec53b057879fa81b114e06cf88
MD5 abde16d49830fb54981113e49d84b56b
BLAKE2b-256 a1df3ff62d1ed28a64faa9c33f1b1ab87d539cea408e1015b1c0160d1dd808a5

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp39-none-win_amd64.whl.

File metadata

  • Download URL: dolma-0.6.2-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for dolma-0.6.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 eaf691ef1034b24d4eef01552dea3731039e88415df59cf903f433b421c5217c
MD5 e2f69daa8e4f88a6205871189bbfca63
BLAKE2b-256 680552140f43e0bf8421a84888e7fbcc2dec515aacb8ab6e2b8dd4b20356db66

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp39-none-win32.whl.

File metadata

  • Download URL: dolma-0.6.2-cp39-none-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for dolma-0.6.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 2cb5c4548e7371d26f18472ade91490a4bf7e6e4002ef6e9e056a283cd279a05
MD5 43b596ff9c134d4e2ed4d4fb07b9583c
BLAKE2b-256 b890603de04b0337db9b0824d24062e5dfebd14f45457c2b7ff22c6c616f737f

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f491064fa1caab311946d8bcb9d09ba00966eddb1a2cee24a6da55dea06a04e
MD5 428847b83d5c375703a5ff3a62868d52
BLAKE2b-256 004eea5fc7fa8cb6fedcef54f278343abff5e2128ec383aa09ac4d97014b6bea

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp39-cp39-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 239833cfd38009c517436b91c6ac440e0a3779cb22d1d6175631ca22318a4b05
MD5 fc2b9ce9fc1526107619d5667bc4dc07
BLAKE2b-256 94b443a81bce4d4ed765eace2dbfa077d15f2569c4ef6f1368bc1adfcbd87b09

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e81f907142802e99f1125066c69646359daa78784967dfe39070ff995384705
MD5 f7bc0a88346fb489c035300803bd4038
BLAKE2b-256 00ab58f8d0a3b8c5a077748d63f7d0bd91c945a60380c61bb7035f392d86879e

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f2d71173e3f65c09935000099a6ecfb9f4a35dc3dfac69fe65b176a378000af
MD5 9ff6a0083d02b32ba0b94d6a4fb3ad9f
BLAKE2b-256 95a57b83768342e692af989911e008626d17a76610a4e8a8a4fb781cd22b6538

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp38-none-win_amd64.whl.

File metadata

  • Download URL: dolma-0.6.2-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for dolma-0.6.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e12c836ef687549cce8e616c26a5af7536b5fda85fd2555de5438f79d58e6dc7
MD5 6e0f9c1ed945ba03417357d20c9fc7a1
BLAKE2b-256 4b7ed526d005e1434471fb716be796d21ecf945c124d3319dacd6f6b5ed507a5

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp38-none-win32.whl.

File metadata

  • Download URL: dolma-0.6.2-cp38-none-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.1.0

File hashes

Hashes for dolma-0.6.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 102f9f21e5c8197229deac6e6fd9f08cb1e3015251d4ac8ab0633fd7897c88f0
MD5 360acdef1ebd70db90dc6e367c52f9a8
BLAKE2b-256 e4ab5dc93207d58cc8dea1e45d77eed0402d3608f2e22833960266acdd03c010

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f1ac0bfdcb222df1e342df01188b6ec9119684b8baad6be93210ed6dc18d4b0
MD5 eb7d378d90533f090549df718de45a5d
BLAKE2b-256 8198b092bcfa14f4dd9a0133875865ef4fd127828a7754d29fa7ba395e05f127

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp38-cp38-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fe228f121ffd2f8ff229edc31c7f68a081f7b29e7e8a954ea4fb06b1488772a7
MD5 42ef5720f5bab9836c778da893f1678b
BLAKE2b-256 e97a4b942bdc831f7d529b825fdd6b2e06df8b003605d8d07a76dbb76b0acb2e

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63716b74f37099a0fc85f0dcb7dd5ecd660bde2d125f8195a37ec8f883e758c9
MD5 aa292007aa37426f1d2a9a3b0d2d15f6
BLAKE2b-256 ca59862358ab72397c9cd55972200e8c97790608efdcc365a490479b021135b8

See more details on using hashes here.

File details

Details for the file dolma-0.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dolma-0.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3c753bc356cd6c63711ca57c3c18c8fccbe1c5a2825066d1d250dcceafc5583
MD5 5e110dee1922f704dee9cbb6dd3adf82
BLAKE2b-256 e4e7e6fd10a2b647d7781a948906328c5c4f0164427b0539dd084dcab8d4c553

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page