home/categories/development
domain cluster

Development

Frameworks, languages, and architectural tools.

23643 스킬all categories
sorting
stars
current ordering strategy
query
all entries
refine the visible subset
framework-internals
304

freertos-64bit-division-implementation

Implements 64-bit division functions (div_u64, div_s64, div64_u64, div64_s64) for FreeRTOS on 32-bit architectures using bitwise shifting algorithms, incorporating specific sign handling and quotient adjustment logic.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

gnn-edge-feature-embedding-generator

Generates PyTorch embeddings for graph edge features by mapping categorical strings to indices and concatenating learned embeddings, specifically handling device, net, and terminal attributes.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

pytorch

Создание класса nn.Module для понижения размерности (например, на основе QR-разложения), который является обучаемым (использует torch.nn.Parameter и обновляется через optimizer.step).

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

ciou

该技能用于在PyTorch目标跟踪或检测任务中,将现有的GIoU损失替换为CIoU(Complete IoU)损失。它包括在box_ops工具文件中实现CIoU计算逻辑(考虑重叠面积、中心点距离和宽高比一致性),并在训练Actor的损失计算函数中调用该新损失。

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

windows-process-memory-manipulation-client

Generates C++ client code to find process IDs, module base addresses, and read/write memory via a custom kernel driver or Windows API, ensuring correct syntax and error handling.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

u-net-pytorch

Создание класса U-Net и функций encoder_block/decoder_block в PyTorch, соответствующих конкретным требованиям к структуре слоев (Conv->ReLU->Pool/Upsample) и логике skip-connections, чтобы пройти заданные проверки (assertions).

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

c-enable-if

根据用户指定的条件(如指针引用、继承关系),使用 std::enable_if 限制 C++ 模板函数的实例化,并移除不符合条件的重载。

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

keraslstmcpu

构建字符级LSTM模型进行文本生成,解决Tokenizer索引越界问题,并配置CPU多进程训练优化。

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

cmapunorderedmapallocator

编写C++通用模板函数,支持std::map和std::unordered_map作为通用容器传入,处理const正确性,支持可选的allocator模板参数,且禁止在函数内部构建临时对象。

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

c

编写支持std::map和std::unordered_map的通用C++模板函数,要求使用模板模板参数而非硬编码类型,处理const类型特征,并在指定时支持allocator参数且不构建临时对象。

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

pytorch-fusedbun-optimizer-implementation

Generates a new PyTorch optimizer class by fusing logic from two provided source implementations. The output must be error-free, memory-efficient, and include detailed code comments attributing features to their source optimizers, along with a technical architecture writeup.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

pytorch-rnn-dataset-chunking-configuration

Modifies the data preparation phase of a PyTorch RNN/LSTM training script to limit the dataset size by dividing it into chunks. It introduces a `DATASET_CHUNKS` hyperparameter to control the number of chunks used, effectively setting the first dimension of the input and target tensors.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

quadrant-based-pixel-art-dsl-generator

Generates compact parameter strings for a pixel art framework using a quadrant grid system and simplified visual terms to ensure accurate positioning and low token usage.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

invoice-entity-bounding-box-mapping-with-duplicate-handling

Modifies OCR entity mapping code to handle duplicate entity values by assigning unique bounding boxes, reversing the dataframe for 'amounts_and_tax' sections, and ensuring no coordinate overlap for multi-token entities.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

keras-datagenerator-jsonl

Создание генератора данных DataGenerator для Keras, который загружает данные из JSONL, присваивает классы на основе имен пользователей (например, 'director'), и реализует паддинг последнего батча нулями для предотвращения ошибок размерности при обучении.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

setup-fortran-qe-environment

Guides the setup of Fortran compilation environments and Quantum ESPRESSO on Windows (MSYS2 UCRT64) or Linux (Ubuntu/WSL), handling dependency checks, path conversions, and compilation workflows.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

implement-c-delist-doubly-linked-list

Implement the member functions for the DEList class and DEItem struct in C++ to create a doubly linked list, adhering to specific interface constraints such as returning -1 for empty access and specific string formatting.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

pytorch-dataset-chunking-for-rnn-training

Modifies PyTorch data preparation scripts for RNN/LSTM models to limit the dataset size by dividing it into chunks controlled by a hyperparameter, ensuring the first dimension of input/target tensors fits memory constraints.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

python2-json

在Python 2环境中编写json.dumps处理字典数据的代码,实现默认UTF-8编码失败时回退到GBK编码,其他异常输出格式错误的逻辑。

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

tcp-socket-optimization-function

Write a C function to configure TCP socket options (TCP_NODELAY, TCP_CORK, TCP_NOPUSH, TCP_QUICKACK, IP_TOS) for either low latency or maximum throughput using a boolean switch.

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

python

编写Python代码,计算数组中连续小于等于给定实数b的元素的最大次数(最大连续长度)。

ECNU-ICALK
ECNU-ICALK
development
open
framework-internals
304

wpf-enable-control-during-modal-blur

Provides strategies to keep a specific WPF control (e.g., a Settings button) interactive and clickable while a modal popup or blur effect disables the rest of the UI. Focuses on visual tree restructuring, Z-Index management, and input isolation.

ECNU-ICALK
ECNU-ICALK
development
open
Previous
Page 251 / 986
Next