File size: 3,891 Bytes
d5bfab8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
//! The `loda-rust arc` subcommands, perform experiments with the `Abstraction and Reasoning Corpus`.
use std::path::PathBuf;
#[cfg(feature = "loda-rust-arc")]
use crate::arc::{SubcommandARCSize, SubcommandARCWeb, TraverseProgramsAndModels};
#[derive(Debug)]
pub enum SubcommandARCMode {
/// Check that all the existing solutions still works.
CheckAllExistingSolutions,
/// Populate the `solutions.csv` file by trying out all puzzles with all solutions.
GenerateSolutionCSV,
/// Eval a single task with all the existing solutions.
EvalSingleTask { pattern: String },
/// The code being executed inside the docker image submitted for the `ARCathon` contest.
Competition,
/// Traverse all puzzles and classify each puzzle.
LabelAllPuzzles,
/// Create a file with training data.
ExportDataset,
/// Run all tasks using the specified solver.
///
/// where `name_of_solver` is one of:
/// - `lr` is logistic regression.
/// - `one` is `SolveOneColor`.
SolveWithSpecificSolver { name_of_solver: String },
/// Predict the output sizes for a single ARC task.
PredictOutputSizesForSingleTask { task_json_file: PathBuf },
/// Traverse the task json files, and assign a number of histogram comparisons.
MetadataHistogram { count: u16, seed: u64, task_json_directory: PathBuf },
}
pub struct SubcommandARC;
impl SubcommandARC {
#[cfg(not(feature = "loda-rust-arc"))]
pub fn run(_mode: SubcommandARCMode) -> anyhow::Result<()> {
panic!("loda-rust-arc feature is not enabled");
}
#[cfg(feature = "loda-rust-arc")]
pub fn run(mode: SubcommandARCMode) -> anyhow::Result<()> {
#[allow(unused_imports)]
use crate::arc::GenerateDataset;
use crate::arc::SubcommandARCMetadata;
match mode {
SubcommandARCMode::CheckAllExistingSolutions => {
return TraverseProgramsAndModels::check_all_existing_solutions();
},
SubcommandARCMode::GenerateSolutionCSV => {
return TraverseProgramsAndModels::generate_solution_csv();
},
SubcommandARCMode::EvalSingleTask { pattern } => {
return TraverseProgramsAndModels::eval_single_task_with_all_existing_solutions(pattern);
},
SubcommandARCMode::Competition => {
return TraverseProgramsAndModels::arc_competition();
},
SubcommandARCMode::LabelAllPuzzles => {
return TraverseProgramsAndModels::label_all_puzzles();
},
SubcommandARCMode::ExportDataset => {
// let path: PathBuf = PathBuf::from("/Users/neoneye/Downloads/histogram-comparisons.jsonl");
// GenerateDataset::generate_dataset_huge(&path)?;
// GenerateDataset::generate_dataset_small(&path)?;
// return Ok(());
return TraverseProgramsAndModels::export_dataset();
},
SubcommandARCMode::SolveWithSpecificSolver { name_of_solver } => {
return TraverseProgramsAndModels::solve_with_specific_solver(&name_of_solver);
},
SubcommandARCMode::PredictOutputSizesForSingleTask { task_json_file } => {
return SubcommandARCSize::run(&task_json_file);
},
SubcommandARCMode::MetadataHistogram { count, seed, task_json_directory } => {
return SubcommandARCMetadata::run(count, seed, &task_json_directory);
},
}
}
#[cfg(not(feature = "loda-rust-arc"))]
pub async fn run_web_server() -> anyhow::Result<()> {
panic!("loda-rust-arc feature is not enabled");
}
#[cfg(feature = "loda-rust-arc")]
pub async fn run_web_server() -> anyhow::Result<()> {
SubcommandARCWeb::run_web_server().await
}
}
|