tensorflow-keras

tensorflow-keras is a skill for Kiro from ihatesea69/kiro-kit. It costs 33 tokens per session (295 once invoked), scanned A, original, MIT.

A guide for building and training machine-learning models with TensorFlow and Keras, including data pipelines and model deployment.

In plain words
What is it for?
Use it for production ML models, tf.data input pipelines, pre-trained models, TensorFlow Serving, and converting models for edge devices.
Why use it?
It helps structure the work from preparing data and training models to checking performance and serving them in production.

Skill for Kiro

Written for Kiro: installed under .kiro/.

Good fit Use it for production ML models, tf.data input pipelines, pre-trained models, TensorFlow Serving, and converting models for edge devices.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ihatesea69/kiro-kit/tensorflow-keras
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ihatesea69/kiro-kit --skill tensorflow-keras
Clone the repo
git clone --depth 1 https://github.com/ihatesea69/kiro-kit

Made for: Kiro.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tensorflow-keras

README.md
[![agentmods](https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/tensorflow-keras/github.svg)](https://agentmods.dev/skills/ihatesea69/kiro-kit/tensorflow-keras)
Your own site
<a href="https://agentmods.dev/skills/ihatesea69/kiro-kit/tensorflow-keras"><img src="https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/tensorflow-keras/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for tensorflow-keras

Your own site · 80×15
<a href="https://agentmods.dev/skills/ihatesea69/kiro-kit/tensorflow-keras"><img src="https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/tensorflow-keras.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 295 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00033 $0.00295
Opus 5 $0.00016 $0.00148
Sonnet 5 $0.00007 $0.00059
Haiku 4.5 $0.00003 $0.00030

Measured 5d ago against content hash 1e4e80cae09f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

tensorflow-keras scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.kiro/skills/tensorflow-keras/SKILL.md · 55 lines

What it actually says

TensorFlow / Keras

Activate this skill when building models with TensorFlow or Keras.

When to Use

  • Building production-ready ML models
  • Implementing efficient data pipelines with tf.data
  • Deploying models with TensorFlow Serving
  • Using pre-trained models from TF Hub
  • Converting models to TFLite for edge deployment

Patterns

import tensorflow as tf
from tensorflow import keras

model = keras.Sequential([
    keras.layers.Dense(128, activation="relu"),
    keras.layers.Dropout(0.3),
    keras.layers.Dense(num_classes, activation="softmax"),
])

model.compile(
    optimizer=keras.optimizers.Adam(1e-3),
    loss="sparse_categorical_crossentropy",
    metrics=["accuracy"],
)

model.fit(
    train_ds,
    validation_data=val_ds,
    epochs=50,
    callbacks=[
        keras.callbacks.EarlyStopping(patience=5),
        keras.callbacks.ModelCheckpoint("best_model.keras"),
    ],
)

Rules

  • Use tf.data for efficient input pipelines
  • Prefer Keras API over raw TF ops
  • Enable mixed precision for GPU training
  • Use callbacks for checkpointing and early stopping
  • Profile with TensorBoard before optimizing
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 55 lines · 33 tokens per session scan A 1e4e80cae09f

Subscribe to this mod's changes

tensorflow-keras is a skill published in the GitHub repository ihatesea69/kiro-kit (18 stars, last pushed 20d ago), licensed MIT. It adds 33 tokens to every session and 295 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

anthropic-python

Anthropic Python SDK for Claude API integration. Covers messages API, streaming, tool use, vision, error handling, and best practices. Use when building Python applications that call the Claude API. USE WHEN: user mentions "anthropic", "claude api", "anthropic sdk", "anthropic.Anthropic()", "client.messages.create"…

claude-dev-suite/claude-dev-suite · 124 tokens

pydantic-ai-model-integration

Configure LLM providers, use fallback models, handle streaming, and manage model settings in PydanticAI. Use when selecting models, implementing resilience, or optimizing API calls.

existential-birds/beagle · 43 tokens

pypi-release

This skill should be used when releasing tunacode-cli to PyPI. It keeps the existing local release checks, then hands the actual PyPI upload to a GitHub Actions workflow that uses the repository's PYPIAPITOKEN secret.

alchemiststudiosDOTai/tunacode · 52 tokens

pytorch-training

PyTorch model-building conventions and a neural-net training debug checklist. Use this skill whenever writing or reviewing PyTorch code that defines a model (nn.Linear, nn.Conv2d, BatchNorm) or trains one (training loop, optimizer, LR schedule), and ESPECIALLY when debugging training problems — loss not converging…

congmnguyen/claude-code-wsl2-setup · 118 tokens

schliff

Deterministic linter and scorer for instruction files — SKILL.md, AGENTS.md, CLAUDE.md. No model in the loop: the same bytes score the same everywhere. Use for linting, scoring, auditing or CI-gating an instruction file, and for checking whether the commands a file promises actually resolve in the repo. Trigger…

Zandereins/schliff · 204 tokens

sap-cloud-sdk-ai-python

Integrates the SAP Cloud SDK for AI for Python (sap-ai-sdk-gen, formerly generative-ai-hub-sdk) into Python applications. Use when building Python apps with SAP AI Core, Generative AI Hub, or the Orchestration Service: chat completion, embeddings, streaming, LangChain integration, templating, content filtering, data…

secondsky/sap-skills · 103 tokens