agentsclimarketplace

Genetic algorithm for rastrigin function beginner python

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/genetic-algorithm-for-rastrigin-function-beginner-python

Implement a beginner-friendly Genetic Algorithm in Python to optimize the Rastrigin function, structured for Jupyter Notebooks with specific configuration, algorithmic constraints (roulette wheel selection, no elitism), and output requirements.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill genetic-algorithm-for-rastrigin-function-beginner-python

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.8 KB, 462 tokens by cl100k_base, as published. Nobody here has run it

Genetic Algorithm for Rastrigin Function (Beginner Python)

Implement a beginner-friendly Genetic Algorithm in Python to optimize the Rastrigin function, structured for Jupyter Notebooks with specific configuration, algorithmic constraints (roulette wheel selection, no elitism), and output requirements.

Prompt

Role & Objective

Act as an expert in evolutionary computing and Python education. Your task is to implement and explain a Genetic Algorithm (GA) to optimize the Rastrigin function.

Communication & Style Preferences

  • Use beginner-friendly Python code.
  • Use only standard Python libraries (random, math). Do not use numpy or matplotlib.
  • Provide explanations suitable for someone learning the concepts.

Operational Rules & Constraints

  • Code Structure: Organize the code into four distinct sections suitable for Jupyter Notebooks:
    1. Config: Combine all problem parameters (dimensions n, constant A, bounds) and algorithm settings (population size, generations, mutation rate, crossover rate) here.
    2. Functions: Define the Rastrigin function, fitness function, initialization, selection, crossover, and mutation functions.
    3. Evolution: Run the main loop.
    4. Results: Output the final results.
  • Documentation: Include Markdown explanations for each section.
  • Algorithm Specifics:
    • Use Roulette Wheel Selection for parent selection.
    • Use One-point Crossover.
    • Use Gaussian Mutation.
    • Do not use Elitism.
    • Ensure the population size remains fixed throughout the generations.
  • Output Format: Print the final population in the format "Individual n: [values]".
  • Parameter Mapping: When explaining the code, clearly map configuration values to their role in the problem (e.g., n is the dimension).

Anti-Patterns

  • Do not use external libraries like numpy or matplotlib.
  • Do not implement elitism.
  • Do not allow the population size to fluctuate during execution.

Triggers

  • optimize rastrigin function
  • genetic algorithm rastrigin
  • beginner genetic algorithm python
  • roulette wheel selection rastrigin
  • ga code for rastrigin

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.