generate-llm-golden-queries-dict
Generates a Python dictionary containing 'golden queries' with expected output variations for LLM performance monitoring and reliability testing.
अपने एजेंट के लिए सही क्षमता खोजें।
Generates a Python dictionary containing 'golden queries' with expected output variations for LLM performance monitoring and reliability testing.
Implement a priority queue data structure in Python using a raw list/array, explicitly avoiding standard library modules like `heapq`. The implementation must manually manage the heap property.
Implement a custom DataFrame class in Python with specific methods (__init__, __getitem__, __repr__, etc.) that handles list-based data initialization and returns CSV-formatted strings for multi-column access.
Design a comprehensive star schema data model from business KPIs, generate MySQL DDL scripts, and create secure Python ETL scripts for daily data synchronization using upserts and complex SQL queries.
使用Maya Python将选中的多边形或细分模型转换为NURBS曲面,并按照指定的U和V方向数量提取曲线。
Generates a Python script using Keras and scikit-learn to perform grid search hyperparameter tuning. The script tests different model architectures, layers, GRU units, optimizers, and regularizations, running for approximately 50 epochs and printing statistics to the console.
Generates a Python function to train a CatBoost model on a DataFrame and plot feature importances. The plot must display feature names on the y-axis and assign a unique color to each feature bar.
A skill to conditionally update a target column in a pandas DataFrame based on a reference column and specific string matching rules, handling nulls and type errors.
Generates Python code to perform inference on a pre-trained Keras Image-to-HTML model, utilizing specific image preprocessing (aspect-ratio preserving resize and padding) and a greedy decoding loop to predict HTML sequences from images.
Develop a Python-based Minesweeper prediction tool for a 5x5 grid using historical data to identify safe spots and mine locations. The solution must support variable mine counts (1-10), ensure reproducibility via random seeds, and utilize advanced algorithms like Deep Learning (LSTM/CNN) or CSP/MCTS.
Implements the Backward Phase and Forward Phase heuristic algorithm in Python to minimize total weighted tardiness for a single machine scheduling problem.
Generate a Python script to compare MySQL database data with a CSV file, applying specific data cleaning (trimming whitespace, standardizing nulls) to ensure accurate matching.
Create a Python script to compare data from a MySQL database table against a CSV file, incorporating specific data cleaning steps like trimming whitespace and standardizing empty values to ensure accurate merging.
Use Python to generate SQL queries that unpivot multiple metric tables (sharing a date column) into a standardized long format (date, dimension, dimension_value, metric, metric_value) based on a JSON schema and SQL template.
Generates Python scripts to perform daily ETL updates on MySQL databases, combining insert and update operations using UNION ALL logic and parameterized queries for security.
Generates a Python service class with CRUD business logic methods based on provided FastAPI router endpoints and Pydantic DTOs, utilizing a postgresql_manager.