Skip to main content

Agents submitted to the SCML competition or contributed by the community

Project description

This repository contains agents for the SCML world.

To install this package just run:

>>> pip install scml-agents

There are two ways to submit agents to this repository:

  1. Participate in the SCML competition https://scml.cs.brown.edu

  2. Submit a pull-request with your agent added to the contrib directory.

Please note that torch does not yet fully support python 3.11. If you face issues installing (especially on a mac), try to use Python 3.10.

Getting lists of agents

You can get any specific subset of the agents in the library using get_agents(). This function has the following parameters:

  • version: Either a competition year (2019, 2020, 2021, ….) or the value “contrib” for all other agents. You can also pass “all” or “any” to get all agents.

  • track: The track (any, std, oneshot [from 2021], sabotage[only for 2019], collusion [until 2023]).

  • qualified_only: If true, only agents that were submitted to SCML and ran in the qualifications round will be

    returned.

  • finalists_only: If true, only agents that were submitted to SCML and passed qualifications will be

    returned.

  • winners_only: If true, only winners of SCML (the given version) will be returned.

  • bird_only: If true, only winners the bird award are returned (new in 2021).

  • top_only: Either a fraction of finalists or the top n finalists with highest scores in the finals of

    SCML.

  • as_class: If true, the agent classes will be returned otherwise their full class names.

For example, to get the top 10% of the Oneshot track finalists in year 2024 as strings, you can use:

>>> get_agents(version=2025, track="oneshot", finalists_only=True, top_only=0.1, as_class=False)

Winners of the SCML 2025 Competition

Oneshot Track

  • First Place (tie): Yuzuru Kitamura for CostAverseAgent

  • First Place (tie): Shota Takayama for Rchan

  • First Place (tie): Rikuto Takano and Takeaki Sakabe for AlmostEqualAgent

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2024, track="oneshot", winners_only=True)

Standard Track

  • First Place: Atsunaga Sadahiro for AS0

  • Second Place: Sota Sakaguchi and Takanobu Otsuka for XenoSotaAgent

  • Third Place: Sora Nishizaki and Takanobu Otsuka for UltraSuperMiracleSoraFinalAgentZ

You can get this agent after installing scml-agents by running:

>>> scml_agents.get_agents(2024, track="std", winners_only=True)

Winners of the SCML 2024 Competition

Oneshot Track

  • First Place: Ryoga Miyajima for CautiousOneShotAgent

  • Second Place: Arnie He, Akash Singirikonda, and Amy Greenwald for MatchingPennies

  • Third Place (tie): Hajime Endo for DistRedistAgent

  • Third Place (tie): Yuzuru Kitamura for EpsilonGreedyAgent

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2024, track="oneshot", winners_only=True)

Standard Track

  • First Place: Gou Kazusa for PenguinAgent

You can get this agent after installing scml-agents by running:

>>> scml_agents.get_agents(2024, track="std", winners_only=True)

Winners of the SCML 2023 Competition

Oneshot Track

  • First Place: Pedro Hrosz Turini and Jaime Sichman for QuantityOrientedAgent

  • Second Place: Shota Kimata and Yuko Sakurai for CCAgent

  • Third Place: Masato Kijima for KanbeAgent

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2023, track="oneshot", winners_only=True)

Standard Track

  • First Place: Sadahiro Atsunaga for AgentSDH

You can get this agent after installing scml-agents by running:

>>> scml_agents.get_agents(2023, track="std", winners_only=True)

Collusion Track

  • Honorary Mention: Kazuki Komori for M5

You can get this agent after installing scml-agents by running:

>>> scml_agents.get_agents(2023, track="collusion", winners_only=True)

Winners of the SCML 2022 Competition

Oneshot Track

  • First Place: Chris Mascioli and Amy Greenwald for PatientAgent

  • Second Place: Takumu Shimizu for GentleS

  • Third Place: Shiraz Nave, Amit Dayan, Sariel Turayfor AgentSAS

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2022, track="oneshot", winners_only=True)

Standard Track

  • First Place: Ito Nobuhiro and Takanobu Otsukafor Lobster

  • Second Place: Kazuki Komori for M5

  • Third Place: Koki Katagiri and Tatanobu Otsuka for Artisan Kangaroo

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2022, track="std", winners_only=True)

Collusion Track

  • Honorary Mention: Kazuki Komori for M5

You can get this agent after installing scml-agents by running:

>>> scml_agents.get_agents(2022, track="collusion", winners_only=True)

Winners of the SCML 2021 Competition

Oneshot Track

  • First Place: Assaf Tirangel, Yossi Weizman, Inbal Avraham for Agent112

  • Second Place: Takumu Shimizu for Gentle

  • Third Place (tie): Sagi Nachum for Agent74

  • Third Place (tie): Yuchen Liu, Rafik Hadfi and Takayuki Ito for UCOneshotAgent

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2021, track="oneshot", winners_only=True)

Standard Track

  • First Place: Kazuki Komori for M4

  • Second Place: Mehmet Onur Keskin, Umit Cakan, Gevher Yesevi, Reyhan Aydogan, Amy Greenwald for CharliesAgent

  • Third Place: Koki Katagiri for Artisan Kangaroo

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2021, track="std", winners_only=True)

Collusion Track

  • First Place: Kazuki Komori for M4

  • Second Place: Mehmet Onur Keskin, Umit Cakan, Gevher Yesevi, Reyhan Aydogan, Amy Greenwald for CharliesAgent

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2021, track="collusion", winners_only=True)

Winners of the SCML 2020 Competition

Standard Track

  • First Place: Masahito Okuno for SteadyMgr

  • Second Place: Guy Heller, E. Gerson, I. Hen and M. Akrabi for Agent30

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2020, track="std", winners_only=True)

Collusion Track

  • First Place: Kazuki Komori for MMM

  • Second Place: Ayan Sengupta for Merchant

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2020, track="collusion", winners_only=True)

Agents accepted for the SCML 2025 qualifications

A list of all agents accepted for the SCML 2025 qualifications round can be found at https://scml.cs.brown.edu/scml2025

Agents accepted for the SCML 2024 qualifications

A list of all agents accepted for the SCML 2024 qualifications round can be found at https://scml.cs.brown.edu/scml2024

Agents accepted for the SCML 2023 qualifications

A list of all agents accepted for the SCML 2023 qualifications round can be found at https://scml.cs.brown.edu/scml2023

Agents accepted for the SCML 2022 qualifications

A list of all agents accepted for the SCML 2022 qualifications round can be found at https://scml.cs.brown.edu/scml2022

Agents accepted for the SCML 2021 qualifications

A list of all agents accepted for the SCML 2021 qualifications round can be found at https://scml.cs.brown.edu/scml2021

Agents accepted for the SCML 2020 qualifications

This is a list of all the agents accepted for the SCML 2020 qualifications round.

Team

Identifier

Agent/Class name

Team Members

a-sengupta

a-sengupta

Merchant

Ayan Sengupta

Past Frauds

past_frauds

MhiranoAgent

Masanori Hirano

Team 15

team_15

SteadyMgr

Masahito Okuno

Team 17

team_17

WhAgent

Noriko Yuasa

Team 18

team_18

Mercu

Kazuto Kakutani

Team 19

team_19

Ashgent

Shuhei Aoyama

Team 20

team_20

CrescentAgent

Yuki Yoshimura

Team 22

team_22

SavingAgent

Takuma Kawamura

ThreadField

threadfield

GreedyFactoryManager2

Yuta Hosokawa

Team May

team_may

MMM

Kazuki Komori

Team 10

team_10

UnicornAgent

Dolev Mutzari

BARgent

bargent

BARGentCovid19

Zacharie Cohen, O. Fogler, D. Neuman and R. Cohen

BIU-TH

biu_th

THBiu

Haim Nafcha

agent0x111

agent0x111

ASMASH

Matanya, Shmulik, Assaf

Team 25

team_25

Agent30

Guy Heller, E. Gerson, I. Hen and M. Akrabi

Team 29

team_29

BIUDODY

Dror Levy, D. Joffe and O. Nagar

Team 32

team_32

BeerAgent

Benjamin Wexler

Team 27

team_27

AgentProjectGC

Cihan Eran and Gevher Yesevi

MontyHall

montyhall

MontyHall

Enrique Areyan Viqueira, E. Li, D. Silverston, A. Sridhar, J. Tsatsaros, A. Yuan and A. Greenwald

You can get these agents after installing scml-agents by running:

>>> scml_agents.get_agents(2020, track="any")

Installation Note

If you are on Apple M1, you will need to install tensorflow before installing this package on conda using the method described here

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scml_agents-0.5.0.tar.gz (39.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scml_agents-0.5.0-py3-none-any.whl (41.3 MB view details)

Uploaded Python 3

File details

Details for the file scml_agents-0.5.0.tar.gz.

File metadata

  • Download URL: scml_agents-0.5.0.tar.gz
  • Upload date:
  • Size: 39.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for scml_agents-0.5.0.tar.gz
Algorithm Hash digest
SHA256 6b40113b1aa0838f0d77a11ab810b44d991d75348393e6d168f724bcc5dc27d9
MD5 13149526053db6176333424813ca3399
BLAKE2b-256 cdf17e55f1cab559fab45cd00e01779ed82ffb3b70389e0693d8fa70d4f4425c

See more details on using hashes here.

File details

Details for the file scml_agents-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: scml_agents-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 41.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for scml_agents-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 03624bcd7d73702809a7a9072d98a1516166031bbee18c4cdb33569c616cebc5
MD5 956fd36b2e820543e6aa196ebb48a278
BLAKE2b-256 96aca390c7a03e5a920fbbd37404414e159e3ae445c1c512eeb06df2e4bb312d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page