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.5.tar.gz (20.6 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.5-py3-none-any.whl (30.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: expkit_core-1.0.5.tar.gz
  • Upload date:
  • Size: 20.6 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.5.tar.gz
Algorithm Hash digest
SHA256 de49fdf08c87eec1a3f09a00b6d912b2981ed28f5a954d37f1986d7be18d9f40
MD5 6205e8941d31bc40c297ea5127dfb757
BLAKE2b-256 35eee1c97e5d924cd97aef9f2187c72c76396a5d1865019ae12e434f8f1981e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: expkit_core-1.0.5-py3-none-any.whl
  • Upload date:
  • Size: 30.1 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 11018007ba5c4fa29399e8727518d5f36e8739dfc0c30c62a78f63d398f26b4f
MD5 3966eb844f516cf1ad1c90f10279d4f7
BLAKE2b-256 0bbfc3be6be85dd45f95becde60f2a842ff17be25d3cea5f2d88ba9b4a89cd49

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