Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
A paper introducing jMetalPy is available at: https://doi.org/10.1016/j.swevo.2019.100598
You can install the latest version of jMetalPy with pip
,
pip install jmetalpy # or "jmetalpy[distributed]"
jMetalPy includes features for parallel and distributed computing based on pySpark and Dask.
These (extra) dependencies are not automatically installed when running pip
, which only comprises the core functionality of the framework (enough for most users):
pip install jmetalpy
This is the equivalent of running:
pip install "jmetalpy[core]"
Other supported commands are listed next:
pip install "jmetalpy[dev]" # Install requirements for development
pip install "jmetalpy[distributed]" # Install requirements for parallel/distributed computing
pip install "jmetalpy[complete]" # Install all requirements
Examples of configuring and running all the included algorithms are located in the documentation.
from jmetal.algorithm.multiobjective import NSGAII
from jmetal.operator import SBXCrossover, PolynomialMutation
from jmetal.problem import ZDT1
from jmetal.util.termination_criterion import StoppingByEvaluations
problem = ZDT1()
algorithm = NSGAII(
problem=problem,
population_size=100,
offspring_population_size=100,
mutation=PolynomialMutation(probability=1.0 / problem.number_of_variables(), distribution_index=20),
crossover=SBXCrossover(probability=1.0, distribution_index=20),
termination_criterion=StoppingByEvaluations(max_evaluations=25000)
)
algorithm.run()
We can then proceed to explore the results:
from jmetal.util.solution import get_non_dominated_solutions, print_function_values_to_file,
print_variables_to_file
front = get_non_dominated_solutions(algorithm.result())
# save to files
print_function_values_to_file(front, 'FUN.NSGAII.ZDT1')
print_variables_to_file(front, 'VAR.NSGAII.ZDT1')
Or visualize the Pareto front approximation produced by the algorithm:
from jmetal.lab.visualization import Plot
plot_front = Plot(title='Pareto front approximation', axis_labels=['x', 'y'])
plot_front.plot(front, label='NSGAII-ZDT1', filename='NSGAII-ZDT1', format='png')
<img src=docs/source/_static/NSGAII-ZDT1.png width=450 alt="Pareto front approximation">
The current release of jMetalPy (v1.7.0) contains the following components:
This project is licensed under the terms of the MIT - see the LICENSE file for details.
FAQs
Python version of the jMetal framework
We found that jmetalpy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.