An efficient, large language model-based framework for algorithm design, aimed at assisting researchers and related users in this field to conduct experimental exploration and industrial applications more quickly and conveniently.
# Import necessary libraries import numpy as np def heuristic(item, bins): diff = bins - item # remaining capacity exp = np.exp(diff) sqrt = np.sqrt(diff) ulti = 1 - diff / bins comb = ulti * sqrt # combination of utilization and square root adjust = np.where(diff > (item * 3), comb + 0.8, comb + 0.3) # hybrid score based on exponent term hybrid_exp = bins / ((exp + 0.7) * exp) # sum of hybrid score and adjustment scores = hybrid_exp + adjust return scoresRun quickstart
2024-12-24
The paper introducing the LLM4AD platform has now been made available on arXiv.
2024-11-11
An open-source platform using Large Language Models (LLMs) for Algorithm Design (AD).
2024-11-10
A Systematic Survey on Large Language Models for Algorithm Design (LLM4AD).