wisent 0.5.1__py3-none-any.whl → 0.5.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of wisent might be problematic. Click here for more details.
- wisent/__init__.py +1 -1
- wisent/benchmarks/coding/metrics/evaluator.py +16 -16
- wisent/benchmarks/coding/output_sanitizer/cpp_sanitizer.py +2 -2
- wisent/benchmarks/coding/output_sanitizer/java_sanitizer.py +2 -2
- wisent/benchmarks/coding/output_sanitizer/python_sanitizer.py +2 -2
- wisent/benchmarks/coding/safe_docker/core/runtime.py +4 -4
- wisent/benchmarks/coding/safe_docker/entrypoint.py +1 -1
- wisent/benchmarks/coding/safe_docker/recipes.py +1 -1
- wisent/classifiers/models/logistic.py +1 -1
- wisent/classifiers/models/mlp.py +1 -1
- wisent/cli/classifiers/classifier_rotator.py +1 -1
- wisent/cli/data_loaders/data_loader_rotator.py +1 -1
- wisent/cli/evaluators/evaluator_rotator.py +1 -1
- wisent/cli/steering_methods/steering_rotator.py +3 -3
- wisent/cli/wisent_cli/commands/help_cmd.py +1 -1
- wisent/cli/wisent_cli/commands/listing.py +7 -7
- wisent/cli/wisent_cli/commands/train_cmd.py +15 -15
- wisent/cli/wisent_cli/main.py +7 -7
- wisent/cli/wisent_cli/shell.py +2 -2
- wisent/cli/wisent_cli/util/aggregations.py +1 -1
- wisent/core/__init__.py +0 -15
- wisent/core/activations/activations_collector.py +5 -5
- wisent/core/agent/device_benchmarks.py +9 -9
- wisent/core/agent/diagnose/classifier_marketplace.py +1 -1
- wisent/core/agent/diagnose/create_classifier.py +1 -1
- wisent/core/agent/diagnose/response_diagnostics.py +2 -2
- wisent/core/agent/diagnose/synthetic_classifier_option.py +6 -6
- wisent/core/agent/diagnose/test_synthetic_classifier.py +3 -3
- wisent/core/agent/diagnose.py +2 -2
- wisent/core/autonomous_agent.py +1 -1
- wisent/core/contrastive_pairs/core/atoms.py +1 -1
- wisent/core/contrastive_pairs/core/buliders.py +3 -3
- wisent/core/contrastive_pairs/core/pair.py +4 -4
- wisent/core/contrastive_pairs/core/response.py +2 -2
- wisent/core/contrastive_pairs/core/serialization.py +2 -2
- wisent/core/contrastive_pairs/core/set.py +3 -3
- wisent/core/contrastive_pairs/diagnostics/control_vectors.py +1 -1
- wisent/core/contrastive_pairs/lm_eval_pairs/atoms.py +1 -1
- wisent/core/contrastive_pairs/lm_eval_pairs/lm_extractor_registry.py +4 -4
- wisent/core/contrastive_pairs/lm_eval_pairs/lm_task_extractors/winogrande.py +4 -4
- wisent/core/contrastive_pairs/lm_eval_pairs/lm_task_pairs_generation.py +3 -3
- wisent/core/data_loaders/core/atoms.py +1 -1
- wisent/core/data_loaders/loaders/custom.py +3 -3
- wisent/core/data_loaders/loaders/lm_loader.py +4 -4
- wisent/core/download_full_benchmarks.py +2 -2
- wisent/core/evaluators/oracles/interactive.py +1 -1
- wisent/core/evaluators/oracles/nlp_evaluator.py +1 -1
- wisent/core/evaluators/oracles/user_specified.py +1 -1
- wisent/core/lm_eval_harness_ground_truth.py +2 -2
- wisent/core/log_likelihoods_evaluator.py +4 -4
- wisent/core/models/core/atoms.py +1 -1
- wisent/core/models/wisent_model.py +5 -5
- wisent/core/optuna/__init__.py +3 -3
- wisent/core/optuna/classifier/activation_generator.py +2 -2
- wisent/core/optuna/classifier/classifier_cache.py +1 -1
- wisent/core/optuna/classifier/optuna_classifier_optimizer.py +2 -2
- wisent/core/optuna/steering/bigcode_evaluator_wrapper.py +3 -3
- wisent/core/optuna/steering/data_utils.py +3 -3
- wisent/core/optuna/steering/metrics.py +5 -5
- wisent/core/optuna/steering/optuna_pipeline.py +8 -8
- wisent/core/optuna/steering/steering_optimization.py +9 -9
- wisent/core/prompts/core/prompt_formater.py +1 -1
- wisent/core/prompts/prompt_stratiegies/direct_completion.py +1 -1
- wisent/core/prompts/prompt_stratiegies/instruction_following.py +1 -1
- wisent/core/prompts/prompt_stratiegies/multiple_choice.py +1 -1
- wisent/core/prompts/prompt_stratiegies/role_playing.py +1 -1
- wisent/core/sample_size_optimizer.py +2 -2
- wisent/core/steering.py +2 -2
- wisent/core/steering_methods/core/atoms.py +2 -2
- wisent/core/steering_methods/methods/caa.py +1 -1
- wisent/core/steering_optimizer.py +2 -2
- wisent/core/tracking/memory.py +1 -1
- wisent/core/trainers/core/atoms.py +2 -2
- wisent/core/trainers/steering_trainer.py +7 -7
- wisent/opti/methods/opti_classificator.py +5 -5
- wisent/opti/methods/opti_steering.py +5 -5
- wisent/synthetic/cleaners/core/atoms.py +1 -1
- wisent/synthetic/cleaners/deduper_cleaner.py +4 -4
- wisent/synthetic/cleaners/methods/base_dedupers.py +2 -2
- wisent/synthetic/cleaners/methods/base_refusalers.py +2 -2
- wisent/synthetic/cleaners/methods/core/atoms.py +2 -2
- wisent/synthetic/cleaners/pairs_cleaner.py +10 -10
- wisent/synthetic/cleaners/refusaler_cleaner.py +12 -12
- wisent/synthetic/db_instructions/mini_dp.py +1 -1
- wisent/synthetic/generators/diversities/methods/fast_diversity.py +1 -1
- wisent/synthetic/generators/pairs_generator.py +8 -8
- {wisent-0.5.1.dist-info → wisent-0.5.3.dist-info}/METADATA +1 -1
- {wisent-0.5.1.dist-info → wisent-0.5.3.dist-info}/RECORD +91 -91
- {wisent-0.5.1.dist-info → wisent-0.5.3.dist-info}/WHEEL +0 -0
- {wisent-0.5.1.dist-info → wisent-0.5.3.dist-info}/licenses/LICENSE +0 -0
- {wisent-0.5.1.dist-info → wisent-0.5.3.dist-info}/top_level.txt +0 -0
|
File without changes
|
|
File without changes
|