awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Back to fmfn/bayesianoptimization

Open-source alternatives to BayesianOptimization

30 open-source projects similar to fmfn/bayesianoptimization, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best BayesianOptimization alternative.

  • bayesian-optimization/bayesianoptimizationAvatar de bayesian-optimization

    bayesian-optimization/BayesianOptimization

    8,552Voir sur GitHub↗

    This is a Bayesian optimization library for Python designed to find the maximum value of expensive black box functions. It operates as a global optimizer that uses probabilistic models to identify the peak value of unknown functions through iterative sampling. The tool is specifically designed for hyperparameter tuning in machine learning, where it maximizes model performance while minimizing the number of required training runs. It treats the target function as a black box, selecting optimal input parameters based on statistical priors to reduce manual trial and error. The system utilizes G

    Pythonbayesian-optimizationgaussian-processesoptimization
    Voir sur GitHub↗8,552
  • guofei9987/scikit-optAvatar de guofei9987

    guofei9987/scikit-opt

    6,583Voir sur GitHub↗

    scikit-opt is a Python optimization library and numerical framework designed to solve complex global optimization problems. It provides a suite of metaheuristic algorithms and tools for finding global minima or maxima of objective functions. The library implements a variety of nature-inspired and swarm intelligence algorithms, including Genetic Algorithms, Particle Swarm Optimization, Differential Evolution, Simulated Annealing, and Ant Colony Optimization. It includes specialized solvers for discrete combinatorial challenges, such as the Traveling Salesman Problem. The framework supports th

    Python
    Voir sur GitHub↗6,583
  • optuna/optunaAvatar de optuna

    optuna/optuna

    14,388Voir sur GitHub↗

    Optuna is a Python-based hyperparameter optimization framework designed to automate the search for optimal machine learning model configurations. It functions as a Bayesian optimization library that systematically tests parameter combinations to maximize or minimize objective functions, streamlining the model development process through iterative evaluation. The project distinguishes itself through a define-by-run dynamic construction model, which allows users to build complex, conditional search spaces using standard programming logic. Its architecture is highly modular, featuring a pluggabl

    Pythondistributedhyperparameter-optimizationmachine-learning
    Voir sur GitHub↗14,388

Recherche par IA

Explorez plus de dépôts awesome

Décrivez vos besoins en langage naturel — l'IA classe des milliers de projets open source sélectionnés par pertinence.

Find more with AI search
  • julianlsolvers/optim.jlAvatar de JuliaNLSolvers

    JuliaNLSolvers/Optim.jl

    1,201Voir sur GitHub↗

    Optim.jl is a numerical optimization library for the Julia programming language, providing a comprehensive framework for minimizing or maximizing univariate and multivariate functions. It offers a suite of tools for solving both constrained and unconstrained mathematical problems, utilizing a variety of gradient-based, derivative-free, and stochastic search methods. The library distinguishes itself through a modular architecture that leverages language-level multiple dispatch to automatically select efficient solvers based on input data types and objective function properties. It supports com

    Juliajuliaoptimoptimisation
    Voir sur GitHub↗1,201
  • scikit-optimize/scikit-optimizeAvatar de scikit-optimize

    scikit-optimize/scikit-optimize

    2,827Voir sur GitHub↗

    Sequential model-based optimization with a scipy.optimize interface

    Python
    Voir sur GitHub↗2,827
  • hyperopt/hyperopt-sklearnAvatar de hyperopt

    hyperopt/hyperopt-sklearn

    1,647Voir sur GitHub↗

    Hyper-parameter optimization for sklearn

    Python
    Voir sur GitHub↗1,647
  • hyperopt/hyperoptAvatar de hyperopt

    hyperopt/hyperopt

    7,582Voir sur GitHub↗

    Hyperopt is a Python library for hyperparameter optimization designed to minimize scalar-valued objective functions. It operates as a stochastic search space engine that finds optimal input parameters by searching through real-valued, discrete, and conditional spaces. The framework distinguishes itself through its support for complex search space configurations, allowing for conditional parameter hierarchies where specific hyperparameters are sampled only if their parent parameters meet certain criteria. It is built as an asynchronous optimization framework, decoupling the generation of searc

    Python
    Voir sur GitHub↗7,582
  • krasserm/bayesian-machine-learningAvatar de krasserm

    krasserm/bayesian-machine-learning

    1,916Voir sur GitHub↗

    This project is an educational collection of computational notebooks and tutorials focused on Bayesian machine learning and probabilistic programming. It provides a framework for building predictive models that represent uncertainty by defining probability distributions over parameters rather than relying on single point estimates. The repository serves as a library of statistical methods for estimating parameter distributions, performing regression, and quantifying confidence levels in predictive systems. It covers a range of techniques including Gaussian process regression, Markov chain Mon

    Jupyter Notebookbayesian-machine-learningbayesian-methodsbayesian-optimization
    Voir sur GitHub↗1,916
  • facebookresearch/nevergradAvatar de facebookresearch

    facebookresearch/nevergrad

    4,151Voir sur GitHub↗

    Nevergrad is a gradient-free optimization library and hyperparameter optimization framework designed to find the minimum of objective functions without using derivatives. It serves as an asynchronous optimization engine that decouples parameter suggestions from result reporting to support parallel function evaluations. The project specializes in multi-objective optimization to identify Pareto fronts for competing goals and provides a suite for benchmarking the performance and convergence of different optimization routines. It supports black-box system optimization, enabling the tuning of exte

    Python
    Voir sur GitHub↗4,151
  • cjlin1/libsvmAvatar de cjlin1

    cjlin1/libsvm

    4,707Voir sur GitHub↗

    This project is a support vector machine library implemented in C, providing an engine for classification and regression tasks. It functions as a machine learning kernel library and a statistical model validator used to categorize data points and predict continuous numerical values. The library allows for the definition of custom kernel functions to calculate similarity between data points in specialized datasets. It also includes tools for probabilistic modeling, such as estimating class membership, data density, and distribution boundaries. Broad capabilities cover model training for multi

    Java
    Voir sur GitHub↗4,707
  • google-research/google-researchAvatar de google-research

    google-research/google-research

    38,139Voir sur GitHub↗

    This repository serves as a comprehensive research platform and toolkit for advancing machine learning, quantum computing, and large-scale scientific data analysis. It provides foundational frameworks for developing complex algorithmic systems, offering the necessary infrastructure for distributed training, computational graph execution, and high-performance model development. The project distinguishes itself by integrating specialized research domains with robust, privacy-preserving methodologies. It supports diverse scientific discovery through tools for quantum simulation, physics-informed

    Jupyter Notebookaimachine-learningresearch
    Voir sur GitHub↗38,139
  • hips/autogradAvatar de HIPS

    HIPS/autograd

    7,458Voir sur GitHub↗

    Autograd is an automatic differentiation library and numerical gradient engine for Python. Its primary purpose is to compute the gradients of mathematical functions to enable numerical optimization and the training of mathematical models. The library automates the calculation of derivatives to simplify the implementation of optimization algorithms. This supports activities such as machine learning research, gradient-based learning, and the optimization of numerical models.

    Python
    Voir sur GitHub↗7,458
  • microsoft/nniAvatar de Microsoft

    Microsoft/nni

    14,351Voir sur GitHub↗

    NNI is an AutoML toolkit designed to automate machine learning lifecycles. It functions as a hyperparameter optimization framework, a neural architecture search tool, and a model compression suite. The project provides a distributed training orchestrator to manage machine learning workloads across local machines, remote servers, and cloud platforms. It enables the discovery of efficient model structures through reinforcement learning and one-shot optimization methods, while utilizing Bayesian and evolutionary algorithms to automate hyperparameter tuning. Additional capabilities include tools

    Python
    Voir sur GitHub↗14,351
  • pycaret/pycaretAvatar de pycaret

    pycaret/pycaret

    9,811Voir sur GitHub↗

    PyCaret is a Python AutoML platform and MLOps lifecycle manager designed to automate machine learning workflows. It functions as a low-code environment that leverages a scikit-learn native engine to execute preprocessing, training, and evaluation for tabular data. The platform distinguishes itself as an LLM-powered ML copilot, using large language model agents to analyze datasets, design experiment configurations, and explain model results. It also serves as a Kubernetes ML orchestrator and model registry, enabling the versioning of trained pipelines and their promotion to production API endp

    Pythonanomaly-detectionautomlclassification
    Voir sur GitHub↗9,811
  • rhiever/tpotAvatar de rhiever

    rhiever/tpot

    10,050Voir sur GitHub↗

    This is a Python automated machine learning framework designed to automate the design and optimization of machine learning pipelines. It functions as a genetic programming pipeline optimizer and an automated feature selection tool, using evolutionary search to discover the most effective sequences of data processing and model steps. The project focuses on multi-objective optimization to balance competing performance metrics simultaneously. It employs a genetic selection process to identify impactful variables and remove noise from raw datasets, ensuring the resulting machine learning solution

    Jupyter Notebook
    Voir sur GitHub↗10,050
  • uber/ludwigAvatar de uber

    uber/ludwig

    11,718Voir sur GitHub↗

    Ludwig is a declarative machine learning framework designed for training neural networks and large language models using configuration files instead of manual coding. It functions as a multimodal model builder and a low-code tool for supervised fine-tuning, allowing users to build models that process mixed inputs of text, images, audio, and tabular data. The project distinguishes itself through an automated hyperparameter optimizer and a system for large language model fine-tuning using parameter-efficient adapters. It features a multimodal data pipeline and the ability to automatically gener

    Python
    Voir sur GitHub↗11,718
  • rsteca/sklearn-deapAvatar de rsteca

    rsteca/sklearn-deap

    774Voir sur GitHub↗

    Use evolutionary algorithms instead of gridsearch in scikit-learn

    Jupyter Notebook
    Voir sur GitHub↗774
  • claesenm/optunityAvatar de claesenm

    claesenm/optunity

    425Voir sur GitHub↗

    optimization routines for hyperparameter tuning

    Jupyter Notebook
    Voir sur GitHub↗425
  • autonomio/talosAvatar de autonomio

    autonomio/talos

    1,637Voir sur GitHub↗

    Hyperparameter Experiments with TensorFlow and Keras

    Pythonartificial-intelligencedeep-learninghyperparameter-optimization
    Voir sur GitHub↗1,637
  • automl/smac3Avatar de automl

    automl/SMAC3

    1,225Voir sur GitHub↗

    SMAC3: A Versatile Bayesian Optimization Package for Hyperparameter Optimization

    Python
    Voir sur GitHub↗1,225
  • pytorch/botorchAvatar de pytorch

    pytorch/botorch

    3,555Voir sur GitHub↗

    Bayesian optimization in PyTorch

    Jupyter Notebook
    Voir sur GitHub↗3,555
  • dragonfly/dragonflyAvatar de dragonfly

    dragonfly/dragonfly

    893Voir sur GitHub↗

    An open source python library for scalable Bayesian optimisation.

    Python
    Voir sur GitHub↗893
  • kubeflow/katibAvatar de kubeflow

    kubeflow/katib

    1,683Voir sur GitHub↗

    Automated Machine Learning on Kubernetes

    Python
    Voir sur GitHub↗1,683
  • hips/spearmintAvatar de HIPS

    HIPS/Spearmint

    1,569Voir sur GitHub↗

    Spearmint Bayesian optimization codebase

    Python
    Voir sur GitHub↗1,569
  • keras-team/keras-tunerAvatar de keras-team

    keras-team/keras-tuner

    2,924Voir sur GitHub↗

    A Hyperparameter Tuning Library for Keras

    Python
    Voir sur GitHub↗2,924
  • determined-ai/determinedAvatar de determined-ai

    determined-ai/determined

    3,224Voir sur GitHub↗

    Determined is an open-source machine learning platform that simplifies distributed training, hyperparameter tuning, experiment tracking, and resource management. Works with PyTorch and TensorFlow.

    Go
    Voir sur GitHub↗3,224
  • tobegit3hub/advisorAvatar de tobegit3hub

    tobegit3hub/advisor

    1,560Voir sur GitHub↗

    Open-source implementation of Google Vizier for hyper parameters tuning

    Jupyter Notebook
    Voir sur GitHub↗1,560
  • cornellius-gp/gpytorchAvatar de cornellius-gp

    cornellius-gp/gpytorch

    3,893Voir sur GitHub↗

    GPyTorch is a GPU-accelerated probabilistic framework and PyTorch library for implementing scalable Gaussian process models. It provides a system for Gaussian process modeling and uncertainty estimation, designed to perform efficient matrix operations on graphics hardware. The framework features a modular kernel system for constructing custom covariance functions and modeling complex data dependencies. It specifically integrates Gaussian processes with deep neural networks to create hybrid models for regression and classification. The system employs numerical linear algebra techniques, inclu

    Python
    Voir sur GitHub↗3,893
  • penrose/penroseAvatar de penrose

    penrose/penrose

    7,949Voir sur GitHub↗

    Penrose is a compiler that transforms structured mathematical notation into optimized SVG diagrams. It uses a three-stage pipeline of separate domain, substance, and style files to define mathematical objects, relationships, and visual presentation, then solves continuous optimization problems with user-defined spatial constraints and objectives to automatically arrange diagram elements. The system separates diagram content from visual style using distinct declarative languages, and provides a typed domain language with subtype hierarchies for mathematical objects. It supports embedding compi

    TypeScriptdiagramsdomain-specific-languagemathematics
    Voir sur GitHub↗7,949
  • gonum/gonumAvatar de gonum

    gonum/gonum

    8,316Voir sur GitHub↗

    Gonum is a numerical computing library for the Go programming language, providing a collection of packages for scientific computing, linear algebra, statistics, and optimization. It functions as a framework for performing complex numerical computations and solving systems of linear equations. The project includes a dedicated graph analysis framework for modeling network graphs and solving connectivity and pathfinding problems. It also provides a statistical analysis toolkit for computing descriptive and inferential statistics and estimating mixture entropy. The library's capability surface c

    Godata-analysisgogolang
    Voir sur GitHub↗8,316