Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
raga-testing-platform
Advanced tools
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.
You can install raga-testing-platform
using pip:
pip install raga-testing-platform
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
test_df = pd.DataFrame({
'column1': [1, 2, 3],
'column2': ['a', 'b', 'c']
})
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
schema = Schema()
It will create auth token for further usages.
auth = Auth()
This variable stores auth token. You can use it untill expire token.
auth.token
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
test_ds = Dataset(token, experiment_id, test_df, schema, "DatasetName")
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"
)
export DEBUG=1
FAQs
Short description or overview of the raga package.
We found that raga-testing-platform demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.