Skip to content

Commit fd4e730

Browse files
committed
Update Iris to py312
1 parent 165bcb3 commit fd4e730

6 files changed

Lines changed: 9 additions & 7 deletions

File tree

codabench/iris/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Iris
1+
# Iris competition bundle
22

3-
### Codabench competition bundle
3+
<img src="bundle/logo.png" width="300" alt="logo">
44

55
This is a collection of files containing the `competition.yaml` which defines different aspects and attributes of the competition, the logo, the html pages documenting the competition, and the data associated with it. The goal is to provide a ready-to-use template for competition creation on [Codabench](https://github.com/codalab/codabench).
66

@@ -14,5 +14,3 @@ References and credits:
1414
* Paper: R. A. Fisher. The use of multiple measurements in taxonomic problems. Annual Eugenics, 7, Part II, 179-188 (1936).
1515
* The competition protocol was designed by Isabelle Guyon.
1616
* The competition bundle was adapted to Codalab V2 by Adrien Pavao.
17-
18-
![logo](bundle/logo.png)

codabench/iris/bundle.zip

72 Bytes
Binary file not shown.

codabench/iris/bundle/competition.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: Iris
88
description: The well known Iris dataset from Fisher's classic paper (Fisher, 1936).
99
image: logo.png
1010
registration_auto_approve: True # do not require approval from admin to join the comp
11-
docker_image: 'codalab/codalab-legacy:py37'
11+
docker_image: codalab/codalab-legacy:py312 # the Docker image in which submissions are run
1212

1313
# Documentation web pages
1414
terms: pages/terms.html
@@ -42,6 +42,9 @@ tasks:
4242
reference_data: reference_data/test
4343
scoring_program: scoring_program
4444
ingestion_program: ingestion_program
45+
46+
# Solution is an example submission, NOT the ground truth
47+
# You can leave it empty and give example submissions in the starting kit
4548
solutions: []
4649

4750
# There are 2 phases: development phase and final phase
@@ -59,7 +62,6 @@ phases:
5962
execution_time_limit: 500
6063
tasks:
6164
- 0
62-
solutions: []
6365
starting_kit: starting_kit
6466
public_data: input_data
6567
- index: 1
@@ -73,7 +75,6 @@ phases:
7375
execution_time_limit: 500
7476
tasks:
7577
- 1
76-
solutions: []
7778

7879
# Leaderboard
7980
leaderboards:

codabench/iris/bundle/ingestion_program/data_converter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
from scipy.sparse import *
1717
from sklearn.datasets import load_svmlight_file
1818
import os
19+
1920
# Note: to check for nan values np.any(map(np.isnan,X_train))
2021
def file_to_array (filename, verbose=False):
2122
''' Converts a file to a list of list of STRING

codabench/mini-automl/bundle.zip

4 Bytes
Binary file not shown.

codabench/mini-automl/bundle/competition.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# This file contains the main settings of the benchmark
22
# Learn more here: https://docs.codabench.org/latest/Organizers/Benchmark_Creation/Yaml-Structure/
3+
4+
# Main settings
35
title: Mini-AutoML
46
version: 2 # this means that it is a Codabench bundle
57
description: AutoML Benchmark template with submission to multiple datasets

0 commit comments

Comments
 (0)