Skip to main content

A package for evalutating machine learning models for pre training and post training biasin addition to evaluting the model for performance at training time and runtime.

Project description

fair-ml

Custom implementation of bias analysis for machine learning models. Based on the AWS SageMaker bias models, though this accommodates bias based on protected classes not used in model training.

Background Modules Usage

Background

Governance in AI systems is becoming more important. Many large cloud providers and other vendors provide services for these analyses, but they are expensive and sometimes over-engineered. The overall goal of this project is to provide a lightweight monitoring framework for machine learning models, that is hopefully easy to use.

Bias analysis works by seperating a feature into two demographic groups, and predictions and outcomes into positive and negative outcomes. The goal in this analysis is to quantify the divergance between how the model and true outcomes favors one demographic.

To do so everything is segmented into two distinct groups representing favored and disfavord groups.

Additionally, there is a module to monitor overall performance at runtime. The nature of ML makes it difficult to have unit tests, and to ensure performance at runtime. ML deployments are different from other software deployments given the inability to ensure accurate results. Our assertions need to be done after the fact. Though, most deploy the model and let it run. There often is not a consistent effort to ensure accuracy in the model predictions over the entire lifetime of the model. There are services available to do this with different vendors (ie AWS SageMaker), but this requires significant cost and compute; they also tend to be slow.

The goal of this package is to offer that kind of ML observability at no cost, and limited resources needed.

The logic is written in Rust, with a python interface to let users pass in some different types (ie not only numpy arrays but also python lists, if for whatever reason someones likes to use python lists instead of numpy arrays), and an easy to use interface. The performance penalty there is minimal and makes use quite a bit easier. I generally feel that users do not need to pay someone a lot of money for services that do not require it.

This package would not be possbile without the great work done by the contributors of PYO3, that work is wonderdul.

Modules

There are two modules that have very similar structure.

data_bias

  • perform_anaylsis
    • Arguments
      • feature: Union[List[int, float, string], NDArray]
        • an array of the feature values
      • ground_truth: Union[List[int, float, string], NDArray]
        • an array of the ground truth values
      • feature_label_or_threshold: Union[str, int, float]
        • the feature label or threshold for segmentation into facets
      • ground_truth_label_or_threshold: Union[str, int, float]
        • the ground truth label or threshold for positive/negative outcome labeling
    • Returns
      • dict
      • the analysis results
  • runtime_comparison
    • Arguments
      • baseline: dict
        • the result of analysis at training time
      • current: dict
        • the result of the current data being evaluated
      • threshold: Optional[float] = 0.10
        • The allowable difference threshold between baseline divergence between facets and current data
    • Returns
      • dict: runtime check results

model_bias

  • perform_anaylsis
    • Arguments
      • feature: Union[List[int, float, string], NDArray]
        • an array of the feature values
      • ground_truth: Union[List[int, float, string], NDArray]
        • an array of the ground truth values
      • predictions: Union[List[int, float, string], NDArray]
        • an array of the predictions
      • feature_label_or_threshold: Union[str, int, float]
        • the feature label or threshold for segmentation into facets
      • ground_truth_label_or_threshold: Union[str, int, float]
        • the ground truth label or threshold for positive/negative outcome labeling
      • prediction_label_or_threshold: Union[str, int, float]
        • the prediction label or threshold for positive/negative outcome labeling
    • Returns
      • dict: the analysis results
  • runtime_comparison
    • Arguments
      • baseline: dict
        • the result of analysis at training time
      • current: dict
        • the result of the current data being evaluated
      • threshold: Optional[float] = 0.10
        • The allowable difference threshold between baseline divergence between facets and current data
    • Returns
      • dict: runtime check results

model_perf

  • linear_regression_analysis
    • Arguments
      • y_true: Union[NDArray, List[Union[int, float]]]
        • the ground truth values
      • y_pred: Union[NDArray, List[Union[int, float]]]
        • the predictions
    • Returns
      • dict
        • the results of the analysis
  • logistic_regression_analysis
    • Arguments
      • y_true: Union[NDArray, List[Union[int, float]]]
        • the ground truth values
      • y_pred: Union[NDArray, List[Union[int, float]]]
        • the predictions
      • decision_threshold: float
        • the decision threshold of the logisitc regression model
    • Returns
      • dict
        • the results of the analysis
  • binary_classification_analysis
    • Arguments
      • y_true: Union[NDArray, List[Union[int, float]]]
        • the ground truth values
      • y_pred: Union[NDArray, List[Union[int, float]]]
        • the predictions
    • Returns
      • dict
        • the results of the analysis
  • runtime_check_full
    • Arguments
      • latest
        • the result from the analysis of the data to be compared to the baseline
      • baseline
        • the baseline analysis results
      • threshold
        • the drift threshold to evaluate model health
    • Returns
      • dict
        • the runtime check results
  • partial_runtime_check
    • Arguments

      • latest
        • the result from the analysis of the data to be compared to the baseline
      • baseline
        • the baseline analysis results
      • threshold
        • the drift threshold to evaluate model healh
      • metrics: List[str]
        • The list of metrics to evaluate on
        • This is useful when you are only interested in a subset of metrics for model health
        • The metrics need to be aligned for the model type
        • LinearRegression accepted values
          • RootMeanSquaredError
          • MeanSquaredError
          • MeanAbsoluteError
          • RSquared
          • MaxError
          • MeanSquaredLogError
          • RootMeanSquaredLogError
          • MeanAbsolutePercentageError
        • BinaryClassification accepted values
          • BalancedAccuracy
          • PrecisionPositive
          • PrecisionNegative
          • RecallPositive
          • RecallNegative
          • Accuracy
          • F1Score
          • LogLoss
        • LogisticRegression accepted values
          • BalancedAccuracy
          • PrecisionPositive
          • PrecisionNegative
          • RecallPositive
          • RecallNegative
          • Accuracy
          • F1Score
          • LogLoss
    • Returns

      • dict
        • the runtime check results

Usage

  • The intended usage for this package is for monitoring machine learning models for bias.
    • The high level principle is that users perform bias and performance analysis at training time, preferrably on a holdout set, and this serves as the baseline data.
  • When a model is deployed, users save the data used to score, the predictions, and collect the ground truth as it becomes available.
  • At some cadence, depending on how quickly ground truth becomes available, analysis is then performed on the features of intereset for bias, the ground truth, and the predictions.
  • The result of the evaluation then can be used for comparison.
  • Where this fits in a system architecture depends on the nature of the model deloyment.
    • Model is being served on an API
      • This process best fits in as a background job
      • Over time, data is collected and persisted
      • When ground truth data becomes available, a job is kicked off
      • Using some cron scheduler is the most straight forward approach
    • Model scores are generated in a batch job
      • This process can be run along with batch inference job
      • In this case, we would be evaulting new data from a previous run, where we have ground truth, not the data apart of the scoring run
  • Whether the job is done as a background job on a server or a batch scoring job, the logic looks the same
  • Before the model is deployed we need to generate our baseline for every monitor
    • Some prerequisite work is required for the bias monitors generaly, to identify features and thresholds to evaluate on
  • These should be saved somewhere, ie some persistent storage
  • During deployment, retrive the baseline data, retrieve the saved inference data for you records, and the ground truth data
    • The inference data (ie features and inference score) should be persisted as well
  • Use the ground truth and inference data to run analysis for runtime
  • Run the methods to compare to the baseline results
  • You should probably know what you want to do in the case of drift

Bias Evaluations

For the bias evaluations, it important to persist the feature data used to make with the prediction in addition to the inference score. To save storage cost or runtime costs, the features that are being evaluated for bias can be stored, though it is probably good practice to store all the data for additional training on the model.

Additionally, some pre work is required to determine first, the features to be evaluated for bias, and the logic to partition the data into advantaged and disadvtanged groups, and positive and negative outcomes.

At runtime something may look like this:

from fair_perf_ml import data_bias, model_bias

"""baseline"""
data_bias_baseline = data_bias.perform_analysis(
    feature=[...], # array of feature data 
    ground_truth=[...], # array of the ground truth data
    feature_label_or_threshold=..., # the label or segmentation threshold for the feature
    ground_truth_label_or_threshold=... # teh array or segmentation threshold for the ground truth
)

model_bias_baseline = model_bias.perform_analysis(
    feature=[...],
    ground_truth=[...],
    predictions=[...], # an array of the predictions
    feature_label_or_threshold=...,
    ground_truth_label_or_threshold=...,
    prediction_label_or_threshold=...
)

##### Save these somewhere to be used during model deployment #####


##### At runtime #####

# saved runtime data
data_bias_curr = data_bias.perform_analysis(
    feature=[...],
    ground_truth=[...],
    feature_label_or_threshold=...,
    ground_truth_label_or_threshold=...
)

model_bias_curr = model_bias.perform_analysis(
    feature=[...],
    ground_truth=[...],
    predictions=[...],
    feature_label_or_threshold=...,
    ground_truth_label_or_threshold=...,
    prediction_label_or_threshold=...
)

# load in baseline
data_bias_baseline = ...
model_bias_baseline = ...

data_bias_monitor = data_bias.runtime_comparison(
    baseline=data_bias_baseline,
    current=data_bias_curr
)

if data_bias_monitor.get("passed"):
    "Data bias passed"
else:
    "Data bias failed"
    # may need to check to see if the model needs to be retrained

model_bias_monitor = data_bias.runtime_comparison(
    baseline=model_bias_baseline,
    current=model_bias_curr
)

if model_bias_monitor.get("passed"):
    "Model bias passed"
else:
    "Model bias failed"
    # may need to check to see if the model needs to be retrained

The json schema for the Data Bias evaluations will look as such:

{
    'ClassImbalance': float,
    'DifferenceInProportionOfLabels': float,
    'KlDivergence': float,
    'JsDivergence': float,
    'LpNorm': float,
    'TotalVarationDistance': float,
    'KolmorogvSmirnov': float
}

And for the Model Bias evaluations:

{
    'DifferenceInPositivePredictedLabels': float,
    'DisparateImpact': float,
    'AccuracyDifference': float,
    'RecallDifference': float,
    'DifferenceInConditionalAcceptance': float,
    'DifferenceInAcceptanceRate': float,
    'SpecialityDifference': float,
    'DifferenceInConditionalRejection': float,
    'DifferenceInRejectionRate': float,
    'TreatmentEquity': float,
    'ConditionalDemographicDesparityPredictedLabels': float,
    'GeneralizedEntropy': float
}

Model Performance

When the results fail a check, this indicates we may need to retrain the model depending on the severity of the divergence.

from fair_perf_ml import model_perf

# depending on your model type
# one of the following
bl = model_perf.linear_regression_analysis(
    y_true=bl_true,
    y_pred=bl_pred
)

bl = model_perf.binary_classification_analysis(
    y_true=bl_true,
    y_pred=bl_pred
)

bl = model_perf.logistic_regression_analysis(
    y_true=bl_true,
    y_pred=bl_pred,
    decision_threshold=0.5
)

##### SAVE THESE RESULTS SOMEWHERE ######


##### AT RUNTIME #####


runtime = model_perf.linear_regression_analysis(
    y_true=rt_true,
    y_pred=rt_pred
)


# for full check
eval_results = model_perf.runtime_check_full(
    baseline=bl,
    latest=runtime
)


# for partial chekc

eval_results = model_perf.partial_runtime_check(
    baseline=bl,
    latest=runtime,
    metrics=[
        "RootMeanSquaredError",
        "MeanSquaredError",
        "MeanAbsoluteError",
        "RSquared"
    ]
)

The evalution result body for Linear Regeression:

{
    "modelType": "LinearRegression",
    "performanceData": {
        "RootMeanSquaredError": float,
        "MeanSquaredError": float,
        "MeanAbsoluteError": float,
        "RSquared": float,
        "MaxError": float,
        "MeanSquaredLogError": float,
        "RootMeanSquaredLogError": float,
        "MeanAbsolutePercentageError": float
    }
}

Evaluation reults for BinaryClassification:

{
    "modelType": "BinaryClassification",
    "performanceData": {
        "BalancedAccuracy": float,
        "PrecisionPositive": float,
        "PrecisionNegative": float,
        "RecallPositive": float,
        "RecallNegative": float,
        "Accuracy": float,
        "F1Score":float
    }
}

Evaluation results for LogisticRegression:

{
    "modelType": "LogisticRegression",
    "performanceData": {
        "BalancedAccuracy": float,
        "PrecisionPositive": float,
        "PrecisionNegative": float,
        "RecallPositive": float,
        "RecallNegative": float,
        "Accuracy": float,
        "F1Score":float,
        "LogLoss": float
    }
}

All evaluation jobs will have the same structure:

{
    "passed": bool,
    "fail_report": {
        // all the metrics that did not meet thresholds
    }
}

Following the evaluation job, one might have some to handle when a comparison job returns some metric failures. This may be some alerting logic, some automated model retraining logic, or some other remediation.

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

fair_perf_ml-0.1.0.tar.gz (32.6 kB view details)

Uploaded Source

Built Distributions

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

fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (508.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (532.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (599.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (509.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (331.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (356.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (508.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (532.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (599.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (509.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (331.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (356.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (508.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (532.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (600.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (509.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (337.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (331.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (506.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (529.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (597.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (507.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (377.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (388.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fair_perf_ml-0.1.0-cp313-cp313-win_amd64.whl (195.6 kB view details)

Uploaded CPython 3.13Windows x86-64

fair_perf_ml-0.1.0-cp313-cp313-win32.whl (185.3 kB view details)

Uploaded CPython 3.13Windows x86

fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (505.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (530.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (598.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (506.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (377.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (388.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (335.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (354.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

fair_perf_ml-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (296.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fair_perf_ml-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (308.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fair_perf_ml-0.1.0-cp312-cp312-win_amd64.whl (195.4 kB view details)

Uploaded CPython 3.12Windows x86-64

fair_perf_ml-0.1.0-cp312-cp312-win32.whl (185.1 kB view details)

Uploaded CPython 3.12Windows x86

fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (506.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (530.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (598.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (507.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (377.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (388.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (335.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (354.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

fair_perf_ml-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (296.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fair_perf_ml-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (308.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fair_perf_ml-0.1.0-cp311-cp311-win_amd64.whl (196.8 kB view details)

Uploaded CPython 3.11Windows x86-64

fair_perf_ml-0.1.0-cp311-cp311-win32.whl (185.9 kB view details)

Uploaded CPython 3.11Windows x86

fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (507.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (531.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (599.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (508.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (355.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

fair_perf_ml-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (299.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fair_perf_ml-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (311.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fair_perf_ml-0.1.0-cp310-cp310-win_amd64.whl (196.8 kB view details)

Uploaded CPython 3.10Windows x86-64

fair_perf_ml-0.1.0-cp310-cp310-win32.whl (185.8 kB view details)

Uploaded CPython 3.10Windows x86

fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (507.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (531.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (599.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (508.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (355.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

fair_perf_ml-0.1.0-cp39-cp39-win_amd64.whl (197.4 kB view details)

Uploaded CPython 3.9Windows x86-64

fair_perf_ml-0.1.0-cp39-cp39-win32.whl (186.4 kB view details)

Uploaded CPython 3.9Windows x86

fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (507.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (532.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (600.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (509.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (331.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (356.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

fair_perf_ml-0.1.0-cp38-cp38-win_amd64.whl (196.9 kB view details)

Uploaded CPython 3.8Windows x86-64

fair_perf_ml-0.1.0-cp38-cp38-win32.whl (186.0 kB view details)

Uploaded CPython 3.8Windows x86

fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (507.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_i686.whl (531.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (599.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (508.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (388.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (355.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file fair_perf_ml-0.1.0.tar.gz.

File metadata

  • Download URL: fair_perf_ml-0.1.0.tar.gz
  • Upload date:
  • Size: 32.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for fair_perf_ml-0.1.0.tar.gz
Algorithm Hash digest
SHA256 82e0ee21b1eb5b4ecaff277a57dfae3563ebd0d7e044caefb18fe2aaafd19d0f
MD5 51d2521eefeeec66824266420132a04e
BLAKE2b-256 7c8e2588686be12967cf6daae5c5fca29de365ff8ad76a59ac154497c74572ec

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 955b6565f929fae27ca02aa52623d8a93839d8d5ffdf49c3fb7eb39883d472f5
MD5 7ef33fbb000380eccdc2365a7d5904ee
BLAKE2b-256 180cad60fb548cb5130d5ff1d8b486921c70d1be135b11230ee2032ff67d9147

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d74433223d7b1db6568e7068d5293176885091a19cf183ec4c10a4a32db1e857
MD5 ddfd8c54cf44c2a35108d34260a5ac58
BLAKE2b-256 cf12b2440db2fe5577f2982bd38c76f36f8790bd6ace7642ee37001947983c91

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50e0486f80e9eb9c2d7583fafa8bd26dd7ceabfd8094d21950382db8c3ad028c
MD5 36534713b6bad86e3f75975afe575492
BLAKE2b-256 b508688f5272f0c0e2c3846f1d28ccbf6e7d02efeb60aeff08cdb4ac42194233

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7a4b021e4f212177f122c9c5e527679ba45e3de19b1051936388007ee08671f
MD5 fb6a99552109c254ad7c76d1983cbd14
BLAKE2b-256 99457a7cc76e818f5d1ed8013e7afbd6632ac6861e3cb23019ea448197ea4276

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8e5e5ebbf3952df75b4a1116fba5811eaf82258e656d111c7804011e1c9d4b3
MD5 e38de0c7353a7b58f0e9d307de4b3e5b
BLAKE2b-256 47996c8c22fde15efed2df81a29c9c207f3e5cfd1d31571ba0451c5b54f6c7ec

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a36866eb732a34b46b5148513f5760a7908019ecb717784c251d0fddb6fe1af8
MD5 955fb007f4705a0603ade444c4d77cc8
BLAKE2b-256 64b2f5fa60cbcd94d0f2d30a6625317c2f3ad79b6f81440aa92fc6c77b68d2a3

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d8391ab3fb0a865a12c878ba2310b6993b1c50b172bad60e2f300191d3bbc60
MD5 10106ee89286e48b689bb3ce0af010ef
BLAKE2b-256 1ec85f9b444b3df7a5cecee5bd0932b3ac0e25ecac11a093dd4fdf577de55d46

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7eb58b1c90f390f6102301458a9ea4417a35d75d55cb3d1a05b1fac744f38b4
MD5 706cda3e18ad5f4cf524041f6dc6e1dc
BLAKE2b-256 ba93704877a2c4c260ed85304978ac294db0b854db69b16957ca749f971b79d5

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb4bc2ecb9eee38017f380370711768c076bd103ce7cbad61d1a38ec2f784be4
MD5 b1d6c0b043f44e3cb87c9232ebd6b1f8
BLAKE2b-256 528e5a61a893d90bff07ea9359c685a87c77c81f97723556ee05ffef59e3386e

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 727ce668ba23cf348c50338abd50e8c791c362ec96837e5e543b778347688704
MD5 919b8f9fa0930d9dab10d6a3bc382aaa
BLAKE2b-256 f2bbb715008b83d3b5a634601f6c64c3c068ba8c98480863406fbd8800658c87

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 661a3fd5deee12c515551e8fc9d4d8cc9b6ae9cc3036cf6185b5a070b71d9879
MD5 2f1e564f412fe79f931e20a12468c67e
BLAKE2b-256 fdf4b809ee745896b2605e849868621c837d0fc10c5e496850f41c0f0b8fb86e

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e34b4792535c4c76e153c6643e7f8cade7d899432fd5ae0c453ee79935681d8
MD5 0590dfb02061c1bf4fa5030b9aedd404
BLAKE2b-256 402c3379df723957f5b111ee285fdcab46fb80e4058b1686479b42360b28f53c

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ad3667a0219734dc5be6df3eea9cfe4d340d715a1aa320a25d6558effb683a7
MD5 cf347f30ec565d5d47c7ad1afb2984d6
BLAKE2b-256 2c17ece1a7820f037d17ee26b265f7bb28c2afc7e31ec6a37e1e3b763d714288

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47227079a6f5c0c5d96b30eab53ebc9f3ea1e91c2d9b7ae1f2c79a8e89645d74
MD5 aeb13de073dd5d9a976de8102f2a5a59
BLAKE2b-256 09d0c73f34f16308803bdb3e3338dce521b654f9db3f06499ea438883bc21b14

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf5d917ae858542b4341fae5105f5a0d41bc47dcd2ae7876b48463d4e1a802fb
MD5 984571e222ae1b602f7561422102ceb4
BLAKE2b-256 4472656b1de3710c2e5b8bcaab795a62d94d6a57e9a1ee2779cf97f407ab2de3

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b566bb9b8080719a76fc4d1c29fd7e68c7f9fa52f8b3cacbe9c1a7ed8f834f31
MD5 e2a209384d6dc47e056b25885c1fad77
BLAKE2b-256 5d4c6d9dca7fa5a9acdfe7cfc89705648d84dd9c887abbb6c730f7b359006936

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc525c64da8ecda43380e47549e2050457698b50c9d3de495cb075a994ce57af
MD5 6489f821e1f666f8d603021c05026005
BLAKE2b-256 54e0c950c093112b8f2242457236aa46c02914f96570624bb02c2fa311504bf3

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 188733ebceef47e2123bd6ac9f7f50c6bd3c8b5487d4dcfe319430e2af8bc225
MD5 b8354ebf16d546c28676251084c9a6ee
BLAKE2b-256 8f417415331b6ec6065ebd79f22723a935ccb63a9031063ca958eb3efe9dc811

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04ba4010a4f6009ff711c7b95035c07402b023931609e9f635579fc050947667
MD5 9edfe895dd82e2ae2b63c2129d54ecd1
BLAKE2b-256 9808156b4eda97ea2bfb74acca19a6c452490f1017d862bd4636393be59bdfe7

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a7fa7db4b97ed47827cae6db19ce5a6551ae55dd804979fbdc2f0a0a3121397
MD5 cb5e43ab943119785bb8a064dc063ba6
BLAKE2b-256 ec16f2367e4cce38cfca3797b00454c0f8bbd5207fd15534b8a3ff7085eb004b

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a0e3a637632eaf120e9b8797b9665050577463a84cdc53897768c461044a0ec
MD5 03d26f3976958f7b4bfac9982c1b0f48
BLAKE2b-256 109c07ccf87b0d4611853328037face0df8283bfddf288df6720685175aceb95

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e51b0c13bea4e74cf29a42071cfc1e9de9f5482d91d2778cb32969f2bebf30d
MD5 ac8fb48c66176e3fcc741dccafacaabd
BLAKE2b-256 f1687131ff524011cb9d4a1f1a240b8215165b85f979ab57b91309c4c99eddab

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43c2a05d9dce532cf4326df1e085154b52bbcb086d509968f177adbb6147888d
MD5 a8d5199f61181d75174e997bf1aa7675
BLAKE2b-256 ab4413b7eaa3938573497e78e6af20b6239d6302fbb3473bf625259702845db9

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bda7ca9104428d81ae50e8f6728b4cb630df1bef449de22a254135a4b31e27c
MD5 f75736c753f3d4276bc878afc3b652ec
BLAKE2b-256 5e4fca90b00bcc892df2f267c148a89060457689bba8fd127b9e28aa090a0281

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c19424930a9f32073d344058d07c7082c140a6726b994df24859a82453856cab
MD5 a21e1e9456d7c3fc8acc949bc769da3b
BLAKE2b-256 2f1594c77c2275f611ffa74217aecbb523b97efab0a0cc6800c50a75cdc7cc80

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c443975e3cf832d71c0e7c0fb83fa9cf680e85c1e6aaeba93201c39e87c8072b
MD5 e6af0ec0e788f3b6427100e1c798cfed
BLAKE2b-256 7e138ba332be7411b635cd6b21e21a390d3b968156b5fef751979adfd3ade33d

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f08b608b7af95d164ad1c9c5f852a98e4a7064ac9859898bb98a705918ed1c56
MD5 2e71c7967c13d618ab5a0866bfa06463
BLAKE2b-256 e79a03f53c64d3e73b781c6790581ca4fb9e9c0ad32898b00c8f77387d3b18f1

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f893e0c60f5c67386101a9849f3ead770f75b4b478071b1dbbe3b1c76a31d21c
MD5 d2e902f1e0cefc74c4633107348aaa57
BLAKE2b-256 2fc9baf67b17db3bf4e1e1eb04738cdda20de3b1b1fad1ee0694dfaead7180c6

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66cf80982ea857928d0997a882aac3eddd941c49af83ab6fdc367b73c8ba1f74
MD5 c717ea35e51592143fc476011013271f
BLAKE2b-256 be4687598b66681f7231b432b5fbaf15e812e275b78f1cc1b33aa1734277ac13

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d845a9a5592c7fe4114b000af97744ddc6174fdb866b5f1bd5d0117110cc5344
MD5 2e125093b4cf07eb22b63d06689f5fb1
BLAKE2b-256 e3d616394314e6018493ed3abae9d34e15b579a100aacbe9ea9a6f8c3be03e91

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 184630628b525c0adbdecd2338f43193593c503a5db10442c95a144417a2b29f
MD5 b34b6842af43978b54ba3b591eac0e83
BLAKE2b-256 bfc8c09dcb676876eab97e4b408e9c3d17e83751d08ace35a43ece5c5ae77b80

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2342cd802631c1e4396373c6afd13bc6f8767d99720bcf97b639d2529306a812
MD5 2eb5d9fcedc2e61104f847f214eaef04
BLAKE2b-256 94f75c0fb0b9b9617785a07293bd63de1fdae28c5fd17575876b2000af908209

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9703ba19176545fa5dd1d731ff034c343b4766f937bf9f90068323303a174120
MD5 41f951c5d545d3bb31b64ce3dfec92e5
BLAKE2b-256 4b64e57c160f79b82c0859a2e7827646a6a06819325ac12aa4d05722079f4119

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2c8a373a640ebaf916aa950ae636af4e9bfe98079208bdb4121d49efdc8887c
MD5 17b454cc78199cc01e146a290e1355bc
BLAKE2b-256 ad4181821e93c23aeb6f091b2d4c0a84cc65840676a1d9d4b4a277ec89dc51a8

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3975e3b770de14d790a6a290126f17d7762076d2712fa289c393547e3bb4cd2
MD5 b19a0cf8ca434b4c75ebdc439843f14c
BLAKE2b-256 d16f9e9321f4741817e7a869cb9b046638747e254652cfbd2412e8df744c1fd6

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 684ee6a96d77fcce335db91b557d741156b17466c2a57f8e6a042464ccc3e7a1
MD5 ba4b84e4f74f7bba04c1614b05cadb75
BLAKE2b-256 9f8853411a4837164b53bae3deefb46d8aca53142e4067cb5dc381e6621b30d6

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1c743185c1065b6f1c318b328d1812775775f5e12b070b55f8c172f324188625
MD5 1466e2c4b4421476526173bcd7726fdc
BLAKE2b-256 abc767436c3cdc70cdacff5b266bebdf1706ea0da84a4292d9812a35ba7e0db5

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2c886fbf723ddeeebfb4a03f490c3a52d163d7a5a04e43dd2f0b86c8ae9538f0
MD5 dbe7218bf4da13441c19dd3845581520
BLAKE2b-256 2233e179f36f09595244c08414f8900d37cbd7e29a12e0d414cefda6c9b7308a

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4db1cffc6456452400b2afeb327aad1fc2f3ef0b77e84423ab3828348b918a46
MD5 fdf4213fee09e7a596eb8ae42914598b
BLAKE2b-256 5f5f5ff1ee0b74abf89e606df4f1cd50b1b4b14b46d3cbb46bb27248957f1a84

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46fda4c0a2e98fc9ee2fd07d492da856d209615be06ebaa7aca73bffa062ea56
MD5 f42b1fbbcbb9900ca6d2c1ec477d9c18
BLAKE2b-256 6501a20abcf892b26dd966c17a7d7f3bb1cc0e488683010f7ae4c15d185b0bbf

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e5c86e2c39bce26beb54b6f2fb60f82b7e16d8b61382fafa1efdd6f62a6a9a1
MD5 482a2cede271581eba3564dc8fb2437c
BLAKE2b-256 8157ae2f1b7a2b56b2ba79fd2e0163b17cbc5c24959719b1213411f77266feb5

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5273f55f0c4939c225394415a7d58179b817d5b2bcd630d3550d4223def8f4e3
MD5 dacbb38bc8abac837ff097ca9e96de22
BLAKE2b-256 6cb9807d401ac65aa15bdd3bd29e61b09e9a8b15e3228579279164339bd4561e

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 856fabe688b73a8c27341ecdd2af1293df860aca943c1dcf0ff928ae4bac859b
MD5 c284eac868033bc5cce1a09ae2da1925
BLAKE2b-256 3e1c2bbd21d17a248551202139e4a6f66c10b330ae54a3878960cdc87e3e0b5d

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efd06e3d27676ec891a444a17b50a283f50ca8c1c654418c350f0e42f8f3d7e4
MD5 9faf038b098683ce633505026ece2b59
BLAKE2b-256 589830660e93a8c623c1a974af40aa0d4aba3a6e9b6b5e22c475cb95b2258605

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6ba1d160a78d78baa706e958e81334009d767a427fdb082c1dc1fa4abd6691b
MD5 875f9fccdc0dab6108403d6d2cfdb718
BLAKE2b-256 1c0d33706d4e32f853679e878ad21b1b8f5ff0dbd91fa30d051918870594cb67

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a19a3140e14d6016193ecf5d51fca4887282832837a6a3224ca7ef3fd7d39331
MD5 79fb54ae17bd21a7635a15b98a156bbf
BLAKE2b-256 d8ffb5a5896003648f08087e7af61f972afb3d07676d4f8cb0a466df4a4ae038

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21efcc8be44d56e4cf3f3ce8c25b3e9b40bc0168d2a7a299fb1031679241a993
MD5 d8c61d8dccde461c4f79acd5d3c01190
BLAKE2b-256 6ea6d8a43a1db59d1d86db399f66844726fe007795b7f9c96eb421a5fe892127

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a539816e7657bfdffe7add3b7fd9be06305711e4d62ed75170a07d749c72896d
MD5 50c92acda933cdbcee844271141f22ae
BLAKE2b-256 2a85d0ab41c8e1fcae73135eb51f823f3182d84948aec6d5137bf7051e2ffdc0

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4e124a904f7e33aa344f5cf92b3c8c19969243f6784fbd0de14a3dd84bf4af1
MD5 eac08574b6d72bf54918fc132499b51a
BLAKE2b-256 7538524d629d558963a78e69c295862f71c91e1a2fe7c802d426cf728050acec

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43599726397276d1527646255b2bdc204ddaa830b4a3359f8ed83df8ddfcd00d
MD5 7f13935880bf707d0cc23102377d3a51
BLAKE2b-256 c82588f487f6176d462955fea122d703620ae24f19098efd13051ffe32b5c7fc

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3d690002e6e0b76dc7edc3cf934168ac86a9a610c4deb1044acf0effd4b507db
MD5 39bbed1b2ccfb87f04c2699ce3172644
BLAKE2b-256 a53ffaf0b94552aad66142b7c267aebe568f7629d5854ed8cfd0dca106daa17b

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ce5e4308a60404e02badbf4ebe0aaf380abc3b70a5ba304d675aa5875701d0f4
MD5 520c98d9d2419db0c568fab6244b283b
BLAKE2b-256 04298cc6a27e5f8a29eb49b6a442df9556ac2285ee4b810d942427d92133262d

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63e1343d5ef1eb2479a4ec0d93011c0ef2abf368a572d00c1f62d2afdb50029b
MD5 a0b2c08d0d579befdd0fb1ef14fbb6f2
BLAKE2b-256 9fd8178091c25b4049653b4ca0f850c8ebfe60bbe3548fe273e9401f59920ac6

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bcf95e86cb41b4e32e05d436a3e030dc605ac3f98b83b90d53d65a1f5693a11e
MD5 48ded92b366ae7e35ae3d6014ea96faf
BLAKE2b-256 93fee857c8dde30506778424bf4f9118ed70afa38d2d009ce55bc171f4ae82fe

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f7bdb687d91b4639fc19555f5673f44028c18394bb49930d3071c0867ae79ff
MD5 c22767d545f4286ff339bd1bbe498dec
BLAKE2b-256 5ad772eadff8a06cec1c5dde05ce5ae5a1c2df9c35887a80e01c22f1589fdaaa

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5408ff4c466a4d9a20228d8ef0ba2a65ef83e2776ec1150a299cf32d8fa373da
MD5 bfca02560b8fb72596602b7fd8737b92
BLAKE2b-256 ac06ce2a5400faafe41f369c4f5e56ffc376193e138b0785f81aa09dcec07483

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17f9dd2bac1fe69488d09e734f84dae84c83f6d63b565e5d577054d4e9c56adb
MD5 2e90487a29dd080ae5c93b657d9a67b5
BLAKE2b-256 e663b05a388078036ddad6584e32fb22466a673ca9c0a52c028cbcc54aa784a3

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a65de460113151309553282374f61fe40ce8d98784f707efe200ef4412b0eb6c
MD5 d5ed6d2cf513a4fbc5825c400b2cf9f0
BLAKE2b-256 687c10d6b7a8943ebd448d1e3f7f304b51205f869d73b04218b39ec1228eec97

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be55424dd5b96daed2e566742176a4fca17510a0190ee5b626b94b641e024cf8
MD5 f5e3612fa1ebd21249d7bef64067fb2a
BLAKE2b-256 ed371bd89b0e21351937dc925616ba54c314ee8db0194bc0a80af0c1474be210

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 291962d895a50dce7793cf61bdcccd398c3cc34db201b94ebcf9405b2b2ad2c9
MD5 1c99a41a132853e8dd8acdff317f5ef3
BLAKE2b-256 fe10b2584457565cafe2da021cf30e3f748b0ea6db9539343455638d77fb4977

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbd61364c66e3c28344b49077049173b5ec1a71a429b42d3ff960e818ee6d31f
MD5 20eb1a6ff7567bb9d823e5b36d8be28b
BLAKE2b-256 5136a59a6d19ad40cff94633cd66499e8e830233619fd3ed5f7c8e3bad387011

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e4a01727642555a16995f2e2a2b407ba5b9d8daf4f0641e5eaddc38a6a159f32
MD5 bfcf96324ab2adfc24c607f941e35854
BLAKE2b-256 14f9b8771f86c3efeeeccad70d3918f3248992f3a97d248f216378cceafc64c6

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca2e2a7e93f3aeecce3b8978cfe243a8d88f6da56627504791330691e9458f10
MD5 261321b2b681f4b50b32aa7b904f96dc
BLAKE2b-256 678384d408297800d7b4ba545a7cd3125399ecae12d2aa1920ef142effb708bb

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17a5e93e6d4df217d48455766ecb758ece102933426027f919eca42790193c9f
MD5 69c2ed689cb1f950e2432254eb802ebd
BLAKE2b-256 64dd7d9a12ad9e747ee7d2b574aa36650c001e591f59aed97e655bf4e3d054e2

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a9ae340af60c593b3a9cf4294e69bc8ccda5943089522ae53ad370561b847541
MD5 08b21ee9ec4ff7a64eef6b7ea7e8b255
BLAKE2b-256 d70ed08ea3a96d6da8f98d2163cea02f988409fbd047d788a929cfa2d2b8b797

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d980b36d37c0b7d64206acf76bed201162b3195df65fe4c36d8c7350a1e6a65a
MD5 523e48753d30b8fa843eb3e92504d229
BLAKE2b-256 573b320177e8dcf889652b45b4d9be47fc812365294910d0893b1c80b538bf11

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 484d3cfe8644957d953ed0c0d6e8aa2dd4a43ca3335479158b978958a13e14cd
MD5 5f1c689a0abf5cd829ce53bddbb0f430
BLAKE2b-256 f1388f1edd902ed2cf39c7b4038249288585110fcda481c63d30ada3ca422665

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65093e23c8b5d42bf05fa6984b147620903bd1a65a08d6dd3fb754194a5b9a98
MD5 112bf1e6805bb84b45eb8da1c2878e9b
BLAKE2b-256 fe1c17dfd1955086dc66c5de3de9fa8076fed16cd92f195427ce4bcaafd71d75

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e78288e45d26ef5d095f459ce7a3224f2d71c64ae0ba329531ac6d82e90cf81
MD5 245ba93023ea92f0c409cbc9a69c6712
BLAKE2b-256 d396d06f6e8ff2258ada79dfb0d47af28e479a75a11567ab1c35a92511ff81a0

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fd2c3a745fe9da4693f3b76eca8ea7c8e4faf24250c01f4ce92a8cb645d7d86
MD5 868b71134490c3bd6cfec6ac1a9b7ae3
BLAKE2b-256 412504ea23caa31d37c98dee0c4ed6b4e47e94318bb2dfc6ebc3202839e8d438

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35a297d87be1078375c4098f65fe7c305e366920feeaccf87798b7bdfd52e36f
MD5 10c8b85fe18717dbcce6b9a846b6fac3
BLAKE2b-256 e75865141d8b4bf139117d01b968aa8740d332311cfa2194252cab6fcb7f4c84

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09302d387dbeb6f535c6de5186cf27aada26f2e0c486f3dae12d232101fbef06
MD5 9e6e6028db97b424564018b544896eb9
BLAKE2b-256 0b0eb95a74d294881100a1c531b6ff4d1b7335e96160c20a379d0ec9a5fab4fd

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92accfeeea2a75084d52f81298ef1fc5e24875014230fbbfe929b7f3f8690438
MD5 43ce44f650965eafe20c8d7e98e8e3b2
BLAKE2b-256 1bd23c54b6c56b1e087e8ed1d13cec98a8ec206b0f3d79f64215c60e9a2e2791

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99a679730b4a51005fbacaa48c41b9e3bb506274c8b861f1d049fbba6fa4d9cf
MD5 65627003ac157d8a878150d75f1adcff
BLAKE2b-256 b7914916fefae68f3d7266c2a7a8e3f023426ff984a14094da27db887c4824f0

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 936973d0184a14a1835d40ab00821f39b0b5e43eb5d68a3bc8adcc9c1c3c21f6
MD5 150d182e780e18c48785d5fdd5d0ec1a
BLAKE2b-256 32de308ac85ef33984b8314d181470f436a214a421014d93c6a3323062e21e9b

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7fc306578c0d4d6a72631a9e8f49bf89b10e73a8540cbd55d6e6a463b8ad0d3
MD5 0ab98213f372e9ee34fcd29f0473658c
BLAKE2b-256 ed839d899c0e5f4f002a58666f90388e996be2678ef3e2a55e1e3e675f350878

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dab52ca0b4def69bdf87974826e47a64de734ca07d68c21e6cb79f3ac62ca77
MD5 1c36c69035c4e55e0f4d2194baadf783
BLAKE2b-256 15e876f18726ac3e4547720b43d168e63539318f321702fe6dcd68405e63875d

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ecb6446aedc79b57d3a15812e52961ffb097a2b8eaba6365fe8cbe71820d78c
MD5 453b34bf167ae57ce79e245cda8f24b4
BLAKE2b-256 0b7778bd10dbf34e6d17367fd3d495b4720f51c8151495605a327303eeeab015

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 55696b4f6273dce26749060ed64fa3dfa744c07d1eb18946eb3263a263160997
MD5 b91243f3b27c172d9ac495c8ba665077
BLAKE2b-256 c5a2faeba75b904f295bb4ab26b5a99dcc9e32a92a7e46c9837e526a9afca1ad

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0b36afc0b25755edf3f2749fed9532ef415862dc6f8c40ed32d3338ffbb4e79e
MD5 aa8d343c778b4ff9c33c3494332c0f16
BLAKE2b-256 de40c986603e5e6e95963e0013042d8837780be10a04ab90ec7771e1b2450c98

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff474c340b5aa0ab3cd0dfd37bf1eb5e0aca1d60f97cef66ec8afc137be866ed
MD5 0849e557e3ed9352aec1ccfc985b57fb
BLAKE2b-256 bcc3968db4516a70ec8c5d7158094c95821371528dee73463674b062203d0949

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c763b37321a68d621054155086d9f20fda16eafc8a6762a2e3913bc85fc43f69
MD5 82727e0288297f2491f34a393902e1e5
BLAKE2b-256 6cc4d35e39c180442b15dd4dd84e4041d97d5087407f3a3e325735e91de14748

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 702ee2535432514adf996881a459fe618dc1289f373304e7b65c9d87d6d3f5e9
MD5 1689961578687b4e605f0d3b6f0df9cc
BLAKE2b-256 781bb717efa7a70e0af3073077bacb91f0712652a51a894c396039449b7dc0e5

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55db476e192ab4660e537d0446f674c138de6f9b162f87f3af6d608fc0c0a34d
MD5 0e873d5ce75fbf40a019da0354f1a7b8
BLAKE2b-256 0f39bd26a6962759622609143a7033e42c661848695c1f09dabd9df5760b1f11

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4894e3dc2aad62db52f47b2c5320c91e1f5e39f573125f616a4245914753857
MD5 dfa24e7d0a8e0448282fc7df24956c4d
BLAKE2b-256 46a3ad3cff12b754dbd7ce7008125b03c74e84fee72a2663fd820cdbf3bd2f69

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f5dad305bb89b828e8bee67f7d1af02f4f2a793e3081e756d99e5fb82812039
MD5 78d16b04c584c6441c4063b010103041
BLAKE2b-256 448921f5a86a8463dfec7580cfa3b7660e1b04d180bf5a6877cc238c355d51fd

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fd8ef54bd1af7f9fc3d8d2478f4e80d3366f4bd2e5aa393f90dcffe74f907c75
MD5 4c891dbc160e24728a1c6fd04cc9d93a
BLAKE2b-256 1ceeaadc6489b8ffcbdba60f2cdb54948886e3a923592e11d271eb230d3b768f

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23f3f1cf88e7b110108c323f4987dae9498ea21cdd17d1c94b95dde967a31ab9
MD5 e9b6921fe9ff5001ff99858f3edfb0e7
BLAKE2b-256 b84e7c5a51f8222eb1154823d39fc61b4d1b8c3d4c325d78ea5d608245dd31f9

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c992298df1e8f6f76135f197afa65d7228bbb8a8ba3411af2f0e595516da825e
MD5 f06b4340f7fe972e307afc53e2a521d2
BLAKE2b-256 c97163720418bf5a98e448d9403d700ecf12f4ca9f9a0d7807a01ce610140184

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2be534e82dd1c451eab3e345a783d47c21bdea72da3582cff00711e27dc0f885
MD5 db2edd9e47d45d3a6bedc82c4b4e4684
BLAKE2b-256 83c0816c3221feda57650c70cdb9883cb7b9cf8fdee7d629473dd2bfe7607332

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3abc744628e7f02f81428fe04f36b219c18901c61be0fbf4083f10019cfdb2bd
MD5 61bcc6751b1c67037197dff77e6e3380
BLAKE2b-256 16de0ae73291b9bc365b8edb6995c56d08024ed30a486e87cca735446bd6383f

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: fair_perf_ml-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 186.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e22320082233154ac6014c803a46980f8319260fff5c0ea4614797e8a9d7a5ba
MD5 460ced13dc90422618f34298dc640782
BLAKE2b-256 f71cb6a8f52816f5fce23e3041406062dd54f4242a4d9ff6ed20256bcd577f11

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a04d5d01338d72acb598451b0e148dbc704f12b79e12d762f01e4a0f135bac55
MD5 9815c52eb6c2351a7910939b601e2f3c
BLAKE2b-256 0e6c03f852eeb0d33cf5a4145a85899934e41e5adda074f5ed16398e5339182e

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0555b27a937943de69598ca3a27d3b476ed3b9bf813df7285c27d29687974fda
MD5 3134b1a1157c84314e250c478aabbb29
BLAKE2b-256 aa4c814d8ead5efb5c56fe3c933ab5235992dde7f2db77136675c3c08c4f09f9

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8976b33b6d156f0c7299e37e7d86a4e068d5b30c215dc73a3123743ce3d885fe
MD5 7dd2d456bad5246ac81fc0fe98fed6e1
BLAKE2b-256 c2d8a5a046f77cf82dde2b483e11bb71305225beaa0a375d925c561b52b1c44e

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26738f3ddd22c7232ddd3d81e689df01c5e6ccdae66d96fa143b4bb26162ad39
MD5 19f47d964b4a345043e271796d602be8
BLAKE2b-256 b38f4165358cc215cf21ffa6cfbeb7bc91cd46b355c7c2b4ff2143d361c98ab2

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8902ddab3db8f2c03f0e1057843dbabde878c9227edd543c909e4bd2c6b6afbc
MD5 868c6d0b3083978c42ceac5b314b4ac3
BLAKE2b-256 c08cf4bb4eb93dcb244ace9dc00746a1976d8e1574066002255c3ebe2dde3afe

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 678f787f3ec6656e6f7401752812687df657b24b0336a3d1d2147f3377ecd44e
MD5 73f3cf1a037fa447fc37ac49c6f4f955
BLAKE2b-256 0ae75bd044caefb7ba2e66f310253fbaf3c67edb522bbe8c1304a07031defc53

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d2db79540061dac128fdcd20e7f0d17efd6ee03fc616edc8b97c0dd35df03d3
MD5 8af52654c205cf44ca7db4e7ae00e08f
BLAKE2b-256 d1686787c9599b2ef8a3b2e9c232a523429f7705e9b659f2435d2ea6b7150b9b

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4be3368f565d34c1c3222daffcb9cd525da6d8c3b215dffd9a1b7e0a44a6d7c
MD5 386b332a360b60ec8756d2d8fbfc0b3b
BLAKE2b-256 9630e4126f7696e8e1db40a24768c768ef3f76b94f9626ec15c9a6ce691fbadd

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a64b8ba81317adcbc110799adce1fd9a425ebb01649f81819bdd72393ae1e73e
MD5 6b5b5064d908b0fe430528443fbf3a82
BLAKE2b-256 488b5bf69373a6ae666653cfd71523fb54d18846509a02a432d77fc45b0e0706

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 52b9775f8684fd1102f4d563185d455615cb37f96474f9831ba93ef182718452
MD5 de246ea8db1db97307a2f22a69c584d1
BLAKE2b-256 9518b979b1e1540f45e578019ebab083e68cba84680b80929e6dc487a18cc8bc

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 148e2fd19cce912e23de1a9f7a741695df998b14713001d99e1e63f5ba8bb5ec
MD5 f3ae1b6c7d67a1e780239b124f7d7676
BLAKE2b-256 2843381fa09e910dda3a83d233b155a9212fba35b8a9e620a33299662bce8bf7

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: fair_perf_ml-0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 186.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ef67778de09cdff847e5a159f8a7e3101697c65b9966066640b63854b2b96e21
MD5 ca8e4f50988a42733199e5dced97b3c1
BLAKE2b-256 c66d0f384dc9f12b5555e9899569081ed522b5ddb447ec71051cabd6f38fdb24

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3eb1b25c04680f5c94dbdd3ad1357612070eb32c3508668f1850aaf7b1bf0e1b
MD5 fa32d371064b13d3edd0bf19ec36c18b
BLAKE2b-256 a8928e6cc8e35818472e2e5921e4fe4193770de6f8f919427c5210da94baed94

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5115b0dbb8f51f1beda1b9893dedf9eb01ab939accf211754159b155fd628aa7
MD5 c261a696de0d8b25989f01a61a659afd
BLAKE2b-256 eb4378b857fe542844c216fe7bc2ef860ae628644fcb26f7f427f7b71b29bf40

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebba019a7d0244e163fcb435e09e4063c2735b98f2b7afd9d4746765ddacfe48
MD5 b2a56036dd7dd2cd77523bfcd329a112
BLAKE2b-256 5305bc53f9b090bfb4c839539d226d4160eda101e1fc7294f20f9e48e3dda58c

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8823c19eb77763bff10a916a8c739fcedef8e001039e53e29faa7d0aa1f675ba
MD5 7ddd293fda0eefa6a9c269e3a35b4d7c
BLAKE2b-256 7e4523175521c3c199ab1c3c662f48b104303257f1b8dccfc2f174d12c3913ce

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb0679c09081d052530d20a256098577df1886890701552d66eee45760700202
MD5 95ac07e1b836d4237408979bb12f81b1
BLAKE2b-256 83e8580436cf696ad925269b226677505ef12eafd0c1734a6881e0c7592f8c56

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e18cc89f082bfb74572a0da4c3a047c59a58ae21f8bfda87c574aa97fcbf82cf
MD5 8f9a4713d780b21afdc4c1dde9edf4f3
BLAKE2b-256 106849027636105bbb62d3a74297151032f178aa0f040603bd711fe5de5e4fd2

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e4ca9ca60120f5552ebe5a02a0509dfbcc03fe3cd9c48656f004f4c45ce31c2
MD5 3587d7b6feedb090fddbcfb292576ecd
BLAKE2b-256 a25e6ca3f91828d5381cf05e4b5e7c558c4fb90fffc258249b96855b5e771cba

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cce750c68a26373120ed4a53f3267e06e96a9e128a4eb51a572ed3f6840d8eb2
MD5 58bf71178146a7918a42722fd404e5b0
BLAKE2b-256 1983af2a2d42a4d0def1c69f75e0e88d39c7105462744b2a864a6dfc50ac2423

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5097c0dee963b98ef9f0a86e13333bbcce01da613f8074d58dac319b9e212cd5
MD5 f0aaaed6d7fb910b61652aceb2e173ef
BLAKE2b-256 2b01415f7554c6984fd411b64858ae95ca834d1a09426de2131275f9b1f54fdf

See more details on using hashes here.

File details

Details for the file fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for fair_perf_ml-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f475bcc44d144c038683fa200a9fbaddc1313dadfa8c0d62c28c6c4d3b2f109b
MD5 71f0786547ac54923b5cb3a66449568a
BLAKE2b-256 eca45bdfc45aba43c68a3070192081ecbb02e878bba11845bcf80358d8601d7b

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