Add your description here
Project description
AIRAS - an open-source project for research automation
AIRAS is an open-source software framework for automated research, being developed to support the entire research workflow. It aims to integrate all of the necessary functions for automating research—from literature search and method generation to experimentation and paper writing—and is designed with the aim of enabling as many individuals and organizations as possible to contribute to open innovation in research automation.
Currently, it focuses on the automation of machine learning research.
Unlike other automated research agents such as AI Scientist, AIRAS has the following key features:
Features
- Implemented by individual research processes
- Enables users to implement flexible and customized research workflows
- Allows users to add their own original research processes
Quick Start
It can be easily used by simply installing it via pip as shown below.
Note: The package is currently under preparation and will be available on PyPI soon.
pip install airas
It is implemented by individual research processes, allowing users to design their own automated research workflows freely.
from airas.preparation import PrepareRepository
from airas.retrieve import (
RetrieveCodeSubgraph,
RetrievePaperFromQuerySubgraph,
RetrieveRelatedPaperSubgraph
)
from airas.create import (
CreateExperimentalDesignSubgraph,
CreateMethodSubgraph
)
from airas.execution import (
ExecutorSubgraph,
FixCodeSubgraph,
PushCodeSubgraph
)
retriever = RetrievePaperFromQuerySubgraph(llm_name=llm_name, save_dir=save_dir, scrape_urls=scrape_urls)
retriever2 = RetrieveRelatedPaperSubgraph(llm_name=llm_name, save_dir=save_dir, scrape_urls=scrape_urls)
retriever3 = RetrieveCodeSubgraph(llm_name=llm_name)
creator = CreateMethodSubgraph(llm_name=llm_name)
creator2 = CreateExperimentalDesignSubgraph(llm_name=llm_name)
coder = PushCodeSubgraph()
executor = ExecutorSubgraph()
fixer = FixCodeSubgraph(llm_name=llm_name)
state = {
"base_queries": "diffusion model",
"gpu_enabled": True,
"experiment_iteration": 1
}
state = retriever.run(state)
state = retriever2.run(state)
state = retriever3.run(state)
state = creator.run(state)
state = creator2.run(state)
state = coder.run(state)
state = executor.run(state)
state = fixer.run(state)
Roadmap
- Complete automation of machine learning research with code-based experimentation
- Autonomous research in robotics
- Autonomous research in various fields
Contact
We are exploring best practices for human-AI collaboration in automated AI research. Together, we're investigating how new research workflows—powered by both human insight and AI agents—can accelerate discovery, improve reproducibility, and give organizations a competitive edge in the age of autonomous research.
If you are interested in this topic, please feel free to contact us at ulti4929@gmail.com.
About AutoRes
This OSS is developed as part of the AutoRes project.
Citation
If you use AIRAS in your research, please cite as follows:
@software{airas2025,
author = {Toma Tanaka, Takumi Matsuzawa, Yuki Yoshino, Ilya Horiguchi, Shiro Takagi, Ryutaro Yamauchi, Wataru Kumagai},
title = {AIRAS},
year = {2025},
publisher = {GitHub},
url = {https://github.com/airas-org/airas}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file airas-0.1.0.tar.gz.
File metadata
- Download URL: airas-0.1.0.tar.gz
- Upload date:
- Size: 6.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e644ada4326a25edd06624183c7080afb662a592f9db7cba78062333fa4aa4d0
|
|
| MD5 |
d294b29d322c6f1498c95ec8c8fdc636
|
|
| BLAKE2b-256 |
b4f2c26a662e4c2a96e2fc0133b1578470a9ec5c11d273851de4544f9d72556e
|
File details
Details for the file airas-0.1.0-py3-none-any.whl.
File metadata
- Download URL: airas-0.1.0-py3-none-any.whl
- Upload date:
- Size: 272.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c30dadff72ebc45141152cfe99454f0379c4c27c284bc585c1daacbfd591a8c8
|
|
| MD5 |
9cc18e9867b43887f44906dc83a2e046
|
|
| BLAKE2b-256 |
a192c7409ff87e47bcacfad6ca66ac87bda8a3783b0d90d6cb68cc3cae4f5a4d
|