Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

ds-skills

ds-skills에는 wenmin-wu에서 수집한 skills 535개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
535
Stars
52
업데이트
2026-04-23
Forks
4
직업 범위
직업 카테고리 2개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

cv-chunked-csv-image-generator
데이터 과학자

Memory-efficient Keras generator that streams sharded CSV files in chunks, renders strokes to images on-the-fly, and yields batches for training on datasets too large for memory

2026-04-23
cv-conv1d-lstm-stroke-classifier
데이터 과학자

Stack 1D convolutions for local feature extraction before bidirectional LSTMs to classify variable-length stroke sequences into hundreds of doodle categories

2026-04-23
cv-deterministic-hash-partitioning
데이터 과학자

Partition a large dataset into N balanced shards using integer key modulo arithmetic for reproducible, class-interleaved splits across CSV files

2026-04-23
cv-stroke-normalize-simplify-pipeline
데이터 과학자

Normalize raw stroke coordinates to 0-255 range, resample at uniform arc-length spacing, then apply Ramer-Douglas-Peucker simplification

2026-04-23
cv-stroke-temporal-color-rendering
데이터 과학자

Render stroke sequences to grayscale images with temporal intensity encoding where earlier strokes are brighter and later strokes fade to encode drawing order

2026-04-23
cv-centroid-distance-anomaly-score
데이터 과학자

Score each face in a video as anomalous by computing L2 distance from the embedding centroid of all faces, then convert to probability via logistic function

2026-04-22
cv-cnn-rnn-video-classification
데이터 과학자

Extract per-frame CNN features then classify the temporal sequence with stacked GRU layers and a boolean mask for variable-length video inputs

2026-04-22
cv-frame-prediction-averaging
데이터 과학자

Average per-frame sigmoid predictions across sampled video frames to produce a stable video-level classification probability

2026-04-22
cv-isotropic-resize-with-padding
데이터 과학자

Resize images preserving aspect ratio then zero-pad to a square to avoid distortion artifacts in face crops or object detection inputs

2026-04-22
cv-video-frame-sampling-pipeline
데이터 과학자

Efficiently sample N evenly-spaced frames from a video using OpenCV grab/retrieve pattern with optional resize for batch face detection or classification

2026-04-22
cv-frame-differencing-temporal-encoding
데이터 과학자

Encode motion and velocity by computing per-channel pixel differences between consecutive frames instead of stacking raw frames for RL visual observations

2026-04-22
cv-smm-spatial-observation-encoding
데이터 과학자

Encode game state as a Super Mini Map (SMM) with separate binary channels for players, ball, and ownership, bit-packed for efficient transfer in RL training

2026-04-22
tabular-ball-landing-prediction
데이터 과학자

Predict where a projectile will land using kinematic equations with estimated gravity to intercept aerial passes in game AI simulations

2026-04-22
tabular-hierarchical-rule-engine
데이터 과학자

Two-level group-then-pattern dispatch for game AI agents where groups filter by game state and ordered patterns within a group fire the first matching action

2026-04-22
tabular-opponent-avoidance-scoring
소프트웨어 개발자

Score candidate movement directions by average distance to nearby opponents and pick the safest path for ball-carrying agents in game AI

2026-04-22
tabular-chained-target-prediction
데이터 과학자

Predict correlated targets sequentially, using earlier target predictions as input features for subsequent targets to exploit inter-target dependencies

2026-04-22
tabular-season-phase-labeling
데이터 과학자

Map calendar dates to categorical season phases (offseason, preseason, regular, postseason) using np.select with boundary date conditions

2026-04-22
timeseries-kaggle-api-streaming-inference
데이터 과학자

Predict day-by-day via Kaggle's iter_test API while maintaining a rolling history buffer for computing lag features online

2026-04-22
timeseries-multi-lag-target-features
데이터 과학자

Generate lag features for multiple targets over N days by shifting evaluation dates and self-joining per entity, creating a wide feature matrix of past target values

2026-04-22
timeseries-periodogram-seasonality-detection
데이터 과학자

Use scipy periodogram to identify dominant seasonal frequencies in a time series before selecting Fourier feature orders or ARIMA seasonal parameters

2026-04-22
tabular-game-state-grid-encoding
소프트웨어 개발자

Encode a 2D game board into a normalized multi-channel feature tensor with log-scaled resources, signed unit counts, and directional features for RL agents

2026-04-22
tabular-phase-based-strategy-cycling
소프트웨어 개발자

Divide a game into repeating phases (attack, mine, spawn) with turn-modular gating so the agent cycles between aggressive and economic behavior

2026-04-22
tabular-ppo-gym-wrapper-kaggle-env
소프트웨어 개발자

Wrap a Kaggle competitive game environment as an OpenAI Gym env with continuous action space for training PPO agents via stable-baselines3

2026-04-22
tabular-rectangular-flight-plan-encoding
소프트웨어 개발자

Encode closed rectangular patrol routes as compact direction-distance strings for fleet pathfinding on toroidal game grids

2026-04-22
tabular-time-varying-reward-shaping
소프트웨어 개발자

Shape RL rewards with time-decaying asset weights and time-increasing resource weights so the agent transitions from expansion to accumulation as the game progresses

2026-04-22
cv-classifier-free-guidance-diffusion
소프트웨어 개발자

Manual stable diffusion inference loop with classifier-free guidance that interpolates between unconditional and conditional noise predictions for controllable image generation

2026-04-22
cv-clip-interrogator-captioning
소프트웨어 개발자

Generate descriptive text prompts from images by combining BLIP captioning with CLIP cosine similarity against curated label banks for medium, movement, and flavor attributes

2026-04-22
cv-embedding-knn-regression
소프트웨어 개발자

GPU-accelerated k-NN regression on CLIP image embeddings using cosine distance and inverse-distance-power weighting to predict target embedding vectors

2026-04-22
cv-sentence-transformer-target-encoding
소프트웨어 개발자

Encode text prompts into fixed-length dense vectors using SentenceTransformer for cosine-similarity evaluation in image-to-text retrieval tasks

2026-04-22
cv-weighted-embedding-blending
소프트웨어 개발자

Ensemble predictions from heterogeneous vision-language models by blending their output embeddings with fixed scalar weights in embedding space

2026-04-22
timeseries-activity-threshold-lastval-fallback
소프트웨어 개발자

Override model predictions with last known value for low-activity or low-density entities where learned trends are unreliable

2026-04-22
timeseries-density-to-count-roundtrip
소프트웨어 개발자

Convert a density metric back to integer counts using known population, round to nearest integer, then recompute density to exploit the discrete nature of the target

2026-04-22
timeseries-expanding-window-stacking
소프트웨어 개발자

Walk-forward stacking ensemble that trains base models on expanding windows and a meta-learner on their out-of-fold predictions across time

2026-04-22
timeseries-ratio-target-for-smape
소프트웨어 개발자

Transform forecasting target to next/current ratio minus one so that optimizing MAE or squared error implicitly minimizes SMAPE

2026-04-22
timeseries-retroactive-outlier-rescaling
데이터 과학자

Walk backward through a time series and multiplicatively rescale segments when jumps exceed a fraction of the running mean to correct data collection anomalies

2026-04-22
llm-4bit-nf4-double-quantization
소프트웨어 개발자

Load large LLMs with 4-bit NF4 quantization and optional double quantization via BitsAndBytes to reduce GPU memory by 4x while preserving inference quality

2026-04-22
llm-inverse-task-prompt-template
데이터 과학자

Structured prompt template for recovering the instruction that transformed one text into another, with labeled original/rewritten fields and explicit task framing

2026-04-22
llm-low-meaning-input-substitution
데이터 과학자

Replace the actual input text with a generic low-meaning passage to prevent the LLM from fixating on content specifics, forcing it to focus on stylistic and structural transformation cues

2026-04-22
llm-perplexity-prompt-ranking
데이터 과학자

Rank candidate prompts by computing LLM perplexity of the full conversation conditioned on each prompt, selecting the lowest-perplexity candidate as the best match

2026-04-22
llm-sentence-truncation-fallback
데이터 과학자

Truncate LLM output to exactly N sentences and fall back to a known-good baseline string when output is empty or too short

2026-04-22
이 저장소에서 수집된 skills 535개 중 상위 40개를 표시합니다.
ds-skills GitHub Agent Skills | SkillsMP