Are you sure you want to delete this task? Once this task is deleted, it cannot be recovered.
|
|
3 years ago | |
|---|---|---|
| .devcontainer | 3 years ago | |
| .github | 3 years ago | |
| docs | 4 years ago | |
| flaml | 3 years ago | |
| notebook | 3 years ago | |
| test | 3 years ago | |
| website | 3 years ago | |
| .coveragerc | 3 years ago | |
| .gitignore | 3 years ago | |
| .pre-commit-config.yaml | 3 years ago | |
| CITATION.cff | 4 years ago | |
| CODE_OF_CONDUCT.md | 5 years ago | |
| Dockerfile | 3 years ago | |
| LICENSE | 5 years ago | |
| NOTICE.md | 4 years ago | |
| README.md | 3 years ago | |
| SECURITY.md | 3 years ago | |
| pyproject.toml | 3 years ago | |
| setup.py | 3 years ago | |
🔥 v1.2.0 is released with support for ChatGPT and GPT-4.
FLAML is a lightweight Python library for efficient automation of machine
learning, including selection of
models, hyperparameters, and other tunable choices of an application (e.g., inference hyperparameters for foundation models, configurations in MLOps/LMOps workflows, pipelines, mathematical/statistical models, algorithms, computing experiments, software configurations).
FLAML has a .NET implementation in ML.NET, an open-source, cross-platform machine learning framework for .NET. In ML.NET, you can use FLAML via low-code solutions like Model Builder Visual Studio extension and the cross-platform ML.NET CLI. Alternatively, you can use the ML.NET AutoML API for a code-first experience.
FLAML requires Python version >= 3.7. It can be installed from pip:
pip install flaml
To run the notebook examples,
install flaml with the [notebook] option:
pip install flaml[notebook]
Use the following guides to get started with FLAML in .NET:
from flaml import oai
config, analysis = oai.Completion.tune(
data=tune_data,
metric="success",
mode="max",
eval_func=eval_func,
inference_budget=0.05,
optimization_budget=3,
num_samples=-1,
)
The automated experimentation and optimization can help you maximize the utility out of these expensive models.
A suite of utilities such as caching and templating are offered to accelerate the experimentation and application development.
from flaml import AutoML
automl = AutoML()
automl.fit(X_train, y_train, task="classification")
automl.fit(X_train, y_train, task="classification", estimator_list=["lgbm"])
from flaml import tune
tune.run(evaluation_function, config={…}, low_cost_partial_config={…}, time_budget_s=3600)
from flaml.default import LGBMRegressor
# Use LGBMRegressor in the same way as you use lightgbm.LGBMRegressor.
estimator = LGBMRegressor()
# The hyperparameters are automatically set according to the training data.
estimator.fit(X_train, y_train)
You can find a detailed documentation about FLAML here where you can find the API documentation, use cases and examples.
In addition, you can find:
Research around FLAML here.
Discord here.
Contributing guide here.
ML.NET documentation and tutorials for Model Builder, ML.NET CLI, and AutoML API.
This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
If you are new to GitHub here is a detailed help source on getting involved with development on GitHub.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct.
For more information see the Code of Conduct FAQ or
contact opencode@microsoft.com with any additional questions or comments.
This is a mirror of AutoGen from GitHub. AutoGen is a framework that enables the development of LLM applications using multiple agents that can converse with each other to solve tasks.
Python SVG Jupyter Notebook C# TSX other