Я провожу соревнование в Codalab и хочу добавить столбец с названием description. Я успешно добавил в файлvaluation.py, чтобы прочитать текстовый файл входной папки в виде строки. Эта строка будет передана в результат.
Однако файл yaml, похоже, имеет только такие определения, как: numeric_type: 4
Для Пример :
leaderboards: # This indicates the beginning of the leaderboard description.
Results: &RESULTS # The leaderboard table anchor is &RESULTS.
label: RESULTS # The table is called "RESULT".
rank: 1
columns: # Now comes the list of columns:
set1_score: # This column will display the results of set1_score.
leaderboard: *RESULTS # It will show up in the table referred to as &RESULTS.
label: Set 1 # The column will be named "Set 1" in the leaderboard.
numeric_format: 4 # There will be 4 decimals displayed.
rank: 2 # This will be the second column
set2_score:
leaderboard: *RESULTS
label: Set 2
numeric_format: 4
rank: 3
ave_score: # Ranking by average rank
leaderboard: *RESULTS
label: < Rank >
numeric_format: 4
rank: 1
computed: # This column will show the average rank of all score columns.
operation: Avg
fields: set1_score, set2_score
ExecutionTime: # This column will show the execution time.
leaderboard: *RESULTS
label: ExecutionTime
numeric_format: 2
rank: 4
Это определение списка лидеров имеет только числовой формат, если я хочу добавить формат строки, как мне определить? Я пробовал строку, строку и т. Д., Но не работает.