Short description or overview of the raga package.
Project description
Raga Testing Platform
The raga-testing-platform
package provides a Python client for interacting with the Raga Testing Platform. It allows you to easily create and manage test sessions, datasets, and perform various testing operations.
Installation
You can install raga-testing-platform
using pip:
pip install raga-testing-platform
Usage
To use the package, import the necessary classes and modules:
from raga import Dataset, TestSession, Auth
import pandas as pd
from typing import Optional, List, Dict
Creating a test DataFrame
test_df = pd.DataFrame({
'column1': [1, 2, 3],
'column2': ['a', 'b', 'c']
})
Defining the Schema class
class Schema:
def __init__(
self,
prediction_id: Optional[str] = None,
timestamp_column_name: Optional[str] = None,
feature_column_names: Optional[List[str]] = None,
metadata_column_names: Optional[List[str]] = None,
label_column_names: Optional[Dict[str, str]] = None,
embedding_column_names: Optional[Dict[str, str]] = None,
):
self.prediction_id = prediction_id
self.timestamp_column_name = timestamp_column_name
self.feature_column_names = feature_column_names
self.metadata_column_names = metadata_column_names
self.label_column_names = label_column_names
self.embedding_column_names = embedding_column_names
Creating an instance of the Schema class
schema = Schema()
Creating an instance of the Auth class
It will create auth token for further usages.
auth = Auth()
This variable stores auth token. You can use it untill expire token.
auth.token
Creating an instance of the TestSession class
In this instance experiment
will create and return experiment_id
experiment_id = TestSession(token, 1, "my_experiment")
This variable stores experiment_id
. You can use it in further experiment.
experiment_id.experiment_id
Creating an instance of the Dataset class
test_ds = Dataset(token, experiment_id, test_df, schema, "DatasetName")
Loading labels from a file
test_ds.load_labels_from_file(
"/path/to/labels.json",
"dataset_name",
"id_column_name",
"label_column_name",
"metadata_column_name",
"category_column_name",
"category_id_column_name"
)
To Debug
export DEBUG=1
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for raga-testing-platform-1.0.48.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18a4a3b9b9e6420a8a47f380b35ecdf72323ca6fa01e89cfeecc3d0208a38ff7 |
|
MD5 | 114a5d1852e9ce15d7e88dd2643af940 |
|
BLAKE2b-256 | aaa28f0c8efc0d0c6f0397ba65ca12df5e5ed1d717a1e221fad995775594e6c1 |
Hashes for raga_testing_platform-1.0.48-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1e5bb7b7a2878058b66b779ec27875f0f4c084360b00c9b9d5d7ed008b20eac |
|
MD5 | 1ba7cdef022a5b769d5a90177dd3d66e |
|
BLAKE2b-256 | 7baf6158edf4680bfbec18c6219785a8f57763407ccf05596a712b52b7341817 |