Skip to main content

Package for managing research experiments text results.

Project description

ExpKit

ExpKit is a flexible experiment management framework for machine learning projects, providing easy storage, retrieval, and evaluation of experimental results.

Features

  • Multiple storage backends (Disk, Zip, Memory, Mongo)
  • Caching support with ROCache
  • Flexible metadata management
  • Batch processing of inputs/outputs
  • Evaluation metrics computation
  • Query interface for experiment retrieval

Installation

pip install expkit-core

Quick Start

Creating an Experiment

from expkit import Exp, DiskStorage

# Configure experiment metadata
meta = {
    "steps": 1000,
    "temperature": 0.7,
    "n": 5,
    "model_path": "path/to/model",
    "batch_size": 32,
}

# Create experiment with disk storage
experiment = Exp(
    storage=DiskStorage(save_path, "rw"),
    meta=meta
)

Adding Data

# Add input/output instances
experiment.add_instances(
    inputs=["input1", "input2", "input3"],
    outputs=["output1", "output2", "output3"]
)

# Add evaluation scores
experiment.add_eval("accuracy", [0.85, 0.92, 0.88])

Loading and Querying Experiments

from expkit import ZipStorage, ExpSetup

# Initialize storage
storage = ZipStorage(base_dir="path/to/outputs", mode="r")

# Create experiment setup
setup = ExpSetup(storage=storage)

# Query experiments
results = setup.query({
   "split":"test",
})

Working with Results

# Access experiment metadata
model_path = exp.get("model_path")

# Get instances
data = exp.instances()

# Get evaluation results
values = exp.get_eval(key)

Storage Backends

ExpKit supports multiple storage backends:

  • DiskStorage: Stores experiments as files on disk
  • ZipStorage: Stores experiments in zip archives
  • MongoStorage: Stores experiments in mongo server
  • MemoryStorage: Keeps experiments in memory
  • ROCache: Caching layer that can wrap other storage backends

Evaluation Operations

You can define custom evaluation operations:

setup = ExpSetup(
    storage=storage,
    ops={
        "mean-reward-1": EvalTotalMean(
            entry_key="scores",
            eval_key=eval_key,
            n=1
        )
    }
)

# Run evaluation operations
setup.run_ops()


# Access results
first_exp_reward = setup[0].get("mean-reward-1")

# Transform experiments
mapped_results = setup.map(lambda exp: {
    "reward": exp.get("mean-reward-1"),
    "model": exp.get("model_path")
})

# Filter experiments
filtered = setup.filter(lambda exp: exp.get("temperature") > 0.5)

# Sort experiments
sorted_exps = setup.sort("temperature")  # ascending order

Contributing

Contributions are welcome! Please read our contributing guidelines and submit pull requests to our repository.

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

expkit_core-1.0.4.tar.gz (20.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

expkit_core-1.0.4-py3-none-any.whl (29.8 kB view details)

Uploaded Python 3

File details

Details for the file expkit_core-1.0.4.tar.gz.

File metadata

  • Download URL: expkit_core-1.0.4.tar.gz
  • Upload date:
  • Size: 20.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.8.19

File hashes

Hashes for expkit_core-1.0.4.tar.gz
Algorithm Hash digest
SHA256 2b20097256a07e2296098b2fbbffde60cb5ae63218b8a29dc8e5c410176498d3
MD5 016005c969a4efd56654544a3ffb8280
BLAKE2b-256 56821d255e342d420a07c1c1c7ac7169070c0074e8ff77e8943ecfaf14782b2b

See more details on using hashes here.

File details

Details for the file expkit_core-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: expkit_core-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 29.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.8.19

File hashes

Hashes for expkit_core-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 f8bde2d2947ebda1ce7fc8e36c7081c4d6ae3bb4d59dc4f67b49c05e54a9032e
MD5 4cbd5bbb27583b6742f970f43a7fb547
BLAKE2b-256 836bd2b9d03f7e8c7a2ab9731d424ffdd05bd111d7b2bb539e4a83d56b1add7d

See more details on using hashes here.

Supported by

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