repo-pretrained-dataset-inference

Create an inference script reading pmlb/datasets and outputting standardized evaluation results.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/BeiBei-Clic/ai-skills --skill repo-pretrained-dataset-inference
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: repo-pretrained-dataset-inference
Source: https://github.com/BeiBei-Clic/ai-skills/tree/main/repo-pretrained-dataset-inference
Command: npx skills add https://github.com/BeiBei-Clic/ai-skills --skill repo-pretrained-dataset-inference

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

把“已经跑通官方预训练示例”的工作进一步落地成“读取 pmlb/datasets 并完成推理实验”的可复用脚本,同时统一目录与结果产出格式,避免用户重复搭脚手架和改 RUN 说明。

Core Features & Use Cases

  • 承接已有推理入口:复用上一步已验证的权重加载与推理链路,只新增面向 pmlb/datasets 的数据读取与实验脚本。
  • 统一实验产物与参数强配置:脚本放到 experiments/pmlb,结果放到 experiments/pmlb/results,并按项目推荐的较强配置调整关键参数以保证更可靠的实验效果。
  • 严格补全运行命令到 RUN.md:将可直接复现的运行命令按预训练示例之后追加写回 RUN.md,并统一路径写法。
  • 面向噪声与 GPU 的实验规范:支持按指定格式对 y 进行乘性高斯噪声注入、输出命名规则,并要求深度神经网络使用 GPU 运行且不做无声降级。

典型使用场景:用户已经能跑通某个预训练仓库的官方示例,现在希望在其基础上新增一个“对 PMLB 数据集进行真实推理评估”的实验脚本(例如默认只取前 200 个样本以快速验证),并把完整复现实验命令补齐。

Quick Start

让 AI 在 experiments/pmlb 下新增 pmlb_inference.py,读取 pmlb/datasets 的数据完成推理实验(默认取前 200 行并使用项目推荐较强配置),将结果输出到 experiments/pmlb/results,同时把对应的运行命令追加到 RUN.md(使用统一的 experiments/pmlb 路径)。

Frequently Asked Questions about repo-pretrained-dataset-inference

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create an inference script for PMLB datasets after running a pretrained model example?

To create a PMLB inference script, you place a new Python file in the experiments/pmlb directory that reads data from pmlb/datasets, uses recommended stronger hyperparameters, and outputs results to experiments/pmlb/results. This extends your existing verified pretrained repository example into a standardized evaluation workflow.

What is the standard directory structure for running PMLB dataset evaluation experiments?

The standard directory structure for PMLB evaluation requires placing inference scripts in experiments/pmlb and storing evaluation results in experiments/pmlb/results. This strict placement ensures outputs are organized and reproducible when extending pretrained repository examples for new experiments.

How do I update RUN.md to include commands for a new PMLB inference experiment?

To update RUN.md for a PMLB inference experiment, append the directly reproducible execution command after the existing pretrained example command, ensuring uniform experiments/pmlb path formatting. This maintains a sequential and standardized command history for project reproducibility.

Can I inject Gaussian noise into target variables during PMLB dataset inference?

Yes, you can inject multiplicative Gaussian noise into target variables (y) during PMLB dataset inference using a specified format. This feature allows controlled dataset sampling and robust evaluation while maintaining strict metric and output ordering for the experiment results.

Does running deep neural network inference on PMLB datasets require a GPU?

Yes, running deep neural network inference on PMLB datasets requires GPU-first execution without silent degradation. The workflow operates using a uv-based Python runtime to ensure experiments with deep neural networks execute reliably and maintain strict metric output ordering.

What are the limitations of using default dataset sampling for PMLB inference experiments?

A limitation of default PMLB dataset sampling is that it only takes the first 200 rows for rapid validation. While this provides quick experiment verification, it restricts the evaluation scope and requires adjusting project-recommended stronger hyperparameters for full dataset assessments.