Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

gaingain 搜索

Agent Skill

gain 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,288

周安装

133

GitHub Stars

公开资料未说明

下载量

1,032
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gain(gain 搜索)
来源仓库:https://github.com/qianlvdouhua/gain
安装命令:
openclaw skills install gain
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install gain

简介

基于 MMoE 深度学习模型预测水稻农艺性状,如产量、株高等。

  • 适用于农业科研、品种选育和种植规划辅助决策场景。
  • 可结合基因型与环境数据提供量化预测结果。gain 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install gain,需输入特征数据。
  • 预测结果受训练数据限制,实际应用前建议田间验证。

SKILL.md

name
rice-phenotype-prediction
description
>-

Rice Phenotype Prediction

Self-contained skill for predicting 10 rice agronomic traits via pre-trained MMoE models. All models, data, and scripts are inside this directory — give users this one folder.

Setup

First-time check

python <SKILL_DIR>/scripts/check_env.py

This verifies Python dependencies and data integrity. If packages are missing:

pip install -r <SKILL_DIR>/requirements.txt

Required: torch>=2.0 numpy pandas scikit-learn scipy requests GPU is optional — CPU works (just slower). If GPU is present, cuda:0 is used automatically.

<SKILL_DIR> convention

Throughout this file, <SKILL_DIR> means the absolute path to this skill's root directory (the folder containing this SKILL.md). When running commands, substitute with the actual path. --base_dir is optional; if omitted, scripts auto-detect it from their own location.

Supported Traits

CodeChineseEnglishUnit
HD抽穗期Heading Datedays
PH株高Plant Heightcm
PL穗长Panicle Lengthcm
TN分蘖数Tiller Numbercount
GP每穗粒数Grains Per Paniclecount
SSR结实率Seed Setting Rate%
TGW千粒重Thousand Grain Weightg
GL粒长Grain Lengthmm
GW粒宽Grain Widthmm
Y产量Yieldkg/ha

Supported Locations (7 built-in stations)

CodeCityLatLon
km昆明25.02102.68
gzl六盘水26.59104.83
nn南宁22.82108.37
wh武汉30.58114.27
hf合肥31.82117.25
hz杭州30.25120.17
th通化41.73125.94

Any input lat/lon is auto-matched to the nearest station via Haversine distance. For locations with internet, daily weather data can also be fetched from NASA POWER API for the exact coordinates.

Stress Types

TypeChineseDefault effect
high_temp高温胁迫+3°C max / +2°C min
low_temp低温胁迫-3°C max / -2°C min
drought干旱胁迫90% precipitation reduction
flood涝害胁迫3x precipitation increase
low_light寡照胁迫60% PAR reduction

Prediction Commands

Full prediction (recommended)

python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --sample sample1

Genotype-only / environment-only

python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --sample sample1 --mode gene
python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --sample sample1 --mode env

Specific traits

python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --sample sample1 --trait PH,Y

With stress

python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --sample sample1 --stress high_temp
python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --sample sample1 --stress high_temp --stress_delta 5.0

Multiple samples

python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --sample "sample1,sample2,sample3"

Custom genotype file

python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --genotype_file /path/to/user_vae.csv

Format: CSV with 1024 columns (VAE-encoded features), first column = sample index.

Force CPU / specific device

python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --sample sample1 --device cpu
python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --sample sample1 --device cuda:0

Human-readable table

python <SKILL_DIR>/scripts/predict.py --lat 30.5 --lon 114.3 --sample sample1 --output table

All CLI arguments

ArgDefaultDescription
--latrequiredLatitude
--lonrequiredLongitude
--sampleNoneBuilt-in sample ID(s), comma-separated (sample1..sample3925)
--genotype_fileNoneCustom 1024-dim VAE CSV path
--modefullgene, env, or full
--traitallComma-separated trait codes or all
--stressNoneStress type name
--stress_deltaNoneOverride temperature delta
--deviceautoauto, cpu, or cuda:0
--year2024Year for environmental data
--outputjsonjson or table
--base_dirautoOverride skill directory path

Handling User Requests

1. Extract location

  • "经纬度30.5, 114.3" → --lat 30.5 --lon 114.3
  • "武汉" → --lat 30.58 --lon 114.27
  • "北纬25度,东经103度" → --lat 25 --lon 103

2. Map trait names

  • 株高/plant height → PH
  • 产量/yield → Y
  • 粒长/grain length → GL
  • 抽穗期/heading date → HD
  • 千粒重/1000-grain weight → TGW
  • 穗长/panicle length → PL
  • 结实率/seed setting rate → SSR
  • 每穗粒数/grains per panicle → GP
  • 粒宽/grain width → GW
  • 分蘖数/tiller number → TN

3. Map stress requests

  • 高温/heat → high_temp
  • 低温/cold/chilling → low_temp
  • 干旱/drought → drought
  • 洪涝/flooding → flood
  • 阴天/寡照/low light → low_light
  • "高温+5度" → --stress high_temp --stress_delta 5.0

4. Genotype data

  • Built-in samples: --sample sample1 (3925 available: sample1..sample3925)
  • User file: --genotype_file /path/to/file.csv

5. Interpreting output

JSON contains: location, genotype_prediction, environment_prediction, stress_prediction, trait_info.

Report environment_prediction as primary (has environmental context). Compare genotype_prediction as baseline. For stress, compare normal vs stressed values.

Rounding: HD/TN/GP → integer, PH/PL/TGW/SSR → 1 decimal, GL/GW → 2 decimals, Y → integer.

Directory Structure

rice_prediction/                   ← give users this folder
├── SKILL.md                       ← this file
├── requirements.txt               ← pip dependencies
├── data/
│   ├── grid_points.json           ← 7 station coordinates
│   ├── vae_features.csv           ← 3925 built-in genotype samples (1024-dim VAE)
│   ├── season_history.csv         ← historical season data for normalization
│   ├── env_cache/                 ← cached daily weather (auto-populated)
│   ├── models_env/                ← 10 trait-specific env+gene models (~4.6MB each)
│   └── models_gene/               ← 7 location-specific genotype models (~8MB each)
└── scripts/
    ├── predict.py                 ← main entry point
    ├── check_env.py               ← dependency checker
    ├── model_def.py               ← MMoE model architectures
    ├── grid_manager.py            ← nearest grid point finder
    ├── env_data_fetcher.py        ← NASA POWER API fetcher + cache
    ├── env_processor.py           ← environmental feature engineering
    └── stress_simulator.py        ← stress scenario simulation

Architecture (for reference)

  • Model: Multi-gate Mixture-of-Experts (MMoE) with ResidualMLP experts
  • Genotype features: 1024-dim VAE latent encoding of genomic data
  • Environment features: 53 season-aggregated variables from daily weather
  • Environmental data: NASA POWER API (auto-fetched and cached locally)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.19%
按下载量换算848

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills