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.

Files changed (91) hide show
  1. wisent/__init__.py +1 -1
  2. wisent/benchmarks/coding/metrics/evaluator.py +16 -16
  3. wisent/benchmarks/coding/output_sanitizer/cpp_sanitizer.py +2 -2
  4. wisent/benchmarks/coding/output_sanitizer/java_sanitizer.py +2 -2
  5. wisent/benchmarks/coding/output_sanitizer/python_sanitizer.py +2 -2
  6. wisent/benchmarks/coding/safe_docker/core/runtime.py +4 -4
  7. wisent/benchmarks/coding/safe_docker/entrypoint.py +1 -1
  8. wisent/benchmarks/coding/safe_docker/recipes.py +1 -1
  9. wisent/classifiers/models/logistic.py +1 -1
  10. wisent/classifiers/models/mlp.py +1 -1
  11. wisent/cli/classifiers/classifier_rotator.py +1 -1
  12. wisent/cli/data_loaders/data_loader_rotator.py +1 -1
  13. wisent/cli/evaluators/evaluator_rotator.py +1 -1
  14. wisent/cli/steering_methods/steering_rotator.py +3 -3
  15. wisent/cli/wisent_cli/commands/help_cmd.py +1 -1
  16. wisent/cli/wisent_cli/commands/listing.py +7 -7
  17. wisent/cli/wisent_cli/commands/train_cmd.py +15 -15
  18. wisent/cli/wisent_cli/main.py +7 -7
  19. wisent/cli/wisent_cli/shell.py +2 -2
  20. wisent/cli/wisent_cli/util/aggregations.py +1 -1
  21. wisent/core/__init__.py +0 -15
  22. wisent/core/activations/activations_collector.py +5 -5
  23. wisent/core/agent/device_benchmarks.py +9 -9
  24. wisent/core/agent/diagnose/classifier_marketplace.py +1 -1
  25. wisent/core/agent/diagnose/create_classifier.py +1 -1
  26. wisent/core/agent/diagnose/response_diagnostics.py +2 -2
  27. wisent/core/agent/diagnose/synthetic_classifier_option.py +6 -6
  28. wisent/core/agent/diagnose/test_synthetic_classifier.py +3 -3
  29. wisent/core/agent/diagnose.py +2 -2
  30. wisent/core/autonomous_agent.py +1 -1
  31. wisent/core/contrastive_pairs/core/atoms.py +1 -1
  32. wisent/core/contrastive_pairs/core/buliders.py +3 -3
  33. wisent/core/contrastive_pairs/core/pair.py +4 -4
  34. wisent/core/contrastive_pairs/core/response.py +2 -2
  35. wisent/core/contrastive_pairs/core/serialization.py +2 -2
  36. wisent/core/contrastive_pairs/core/set.py +3 -3
  37. wisent/core/contrastive_pairs/diagnostics/control_vectors.py +1 -1
  38. wisent/core/contrastive_pairs/lm_eval_pairs/atoms.py +1 -1
  39. wisent/core/contrastive_pairs/lm_eval_pairs/lm_extractor_registry.py +4 -4
  40. wisent/core/contrastive_pairs/lm_eval_pairs/lm_task_extractors/winogrande.py +4 -4
  41. wisent/core/contrastive_pairs/lm_eval_pairs/lm_task_pairs_generation.py +3 -3
  42. wisent/core/data_loaders/core/atoms.py +1 -1
  43. wisent/core/data_loaders/loaders/custom.py +3 -3
  44. wisent/core/data_loaders/loaders/lm_loader.py +4 -4
  45. wisent/core/download_full_benchmarks.py +2 -2
  46. wisent/core/evaluators/oracles/interactive.py +1 -1
  47. wisent/core/evaluators/oracles/nlp_evaluator.py +1 -1
  48. wisent/core/evaluators/oracles/user_specified.py +1 -1
  49. wisent/core/lm_eval_harness_ground_truth.py +2 -2
  50. wisent/core/log_likelihoods_evaluator.py +4 -4
  51. wisent/core/models/core/atoms.py +1 -1
  52. wisent/core/models/wisent_model.py +5 -5
  53. wisent/core/optuna/__init__.py +3 -3
  54. wisent/core/optuna/classifier/activation_generator.py +2 -2
  55. wisent/core/optuna/classifier/classifier_cache.py +1 -1
  56. wisent/core/optuna/classifier/optuna_classifier_optimizer.py +2 -2
  57. wisent/core/optuna/steering/bigcode_evaluator_wrapper.py +3 -3
  58. wisent/core/optuna/steering/data_utils.py +3 -3
  59. wisent/core/optuna/steering/metrics.py +5 -5
  60. wisent/core/optuna/steering/optuna_pipeline.py +8 -8
  61. wisent/core/optuna/steering/steering_optimization.py +9 -9
  62. wisent/core/prompts/core/prompt_formater.py +1 -1
  63. wisent/core/prompts/prompt_stratiegies/direct_completion.py +1 -1
  64. wisent/core/prompts/prompt_stratiegies/instruction_following.py +1 -1
  65. wisent/core/prompts/prompt_stratiegies/multiple_choice.py +1 -1
  66. wisent/core/prompts/prompt_stratiegies/role_playing.py +1 -1
  67. wisent/core/sample_size_optimizer.py +2 -2
  68. wisent/core/steering.py +2 -2
  69. wisent/core/steering_methods/core/atoms.py +2 -2
  70. wisent/core/steering_methods/methods/caa.py +1 -1
  71. wisent/core/steering_optimizer.py +2 -2
  72. wisent/core/tracking/memory.py +1 -1
  73. wisent/core/trainers/core/atoms.py +2 -2
  74. wisent/core/trainers/steering_trainer.py +7 -7
  75. wisent/opti/methods/opti_classificator.py +5 -5
  76. wisent/opti/methods/opti_steering.py +5 -5
  77. wisent/synthetic/cleaners/core/atoms.py +1 -1
  78. wisent/synthetic/cleaners/deduper_cleaner.py +4 -4
  79. wisent/synthetic/cleaners/methods/base_dedupers.py +2 -2
  80. wisent/synthetic/cleaners/methods/base_refusalers.py +2 -2
  81. wisent/synthetic/cleaners/methods/core/atoms.py +2 -2
  82. wisent/synthetic/cleaners/pairs_cleaner.py +10 -10
  83. wisent/synthetic/cleaners/refusaler_cleaner.py +12 -12
  84. wisent/synthetic/db_instructions/mini_dp.py +1 -1
  85. wisent/synthetic/generators/diversities/methods/fast_diversity.py +1 -1
  86. wisent/synthetic/generators/pairs_generator.py +8 -8
  87. {wisent-0.5.1.dist-info → wisent-0.5.3.dist-info}/METADATA +1 -1
  88. {wisent-0.5.1.dist-info → wisent-0.5.3.dist-info}/RECORD +91 -91
  89. {wisent-0.5.1.dist-info → wisent-0.5.3.dist-info}/WHEEL +0 -0
  90. {wisent-0.5.1.dist-info → wisent-0.5.3.dist-info}/licenses/LICENSE +0 -0
  91. {wisent-0.5.1.dist-info → wisent-0.5.3.dist-info}/top_level.txt +0 -0