Library Search
结果页

02-neural-network-mnist

在 技术栈 中找到 8 个匹配结果。

返回文档库
技术栈

技术栈

8 个
查看全部
Verilog / SystemVerilog always_ff @(posedge clk or negedge rst_n) begin if (!rst_n) begin state <= S_IDLE; tx <= 1'b1; clk_cnt <= 0; bit_idx <= 0; end else begin case (stat… 2% PyTorch | 概念 | 说明 | |------|------| | `torch.tensor()` vs `torch.Tensor()` | 前者是工厂函数(复制数据),后者是构造器(未初始化) | | `from_numpy()` | 与 NumPy 共享内存,修改会互相影响 | | `.to(device)` | 通用设备迁移(CPU / CUDA / MPS) | | `requires_gra… 2% Linux check_memory() { local total used free pct read -r total used free <<< "$(free -m | awk '/^Mem:/ {print $2, $3, $4}')" pct=$(( used * 100 / total )) log "内存: ${used}MB / ${total}MB (${… 2% Tailwind CSS <!-- 卡片 2 --> <div class="bg-white rounded-2xl shadow-md overflow-hidden hover:shadow-xl transition-shadow duration-300"> <div class="h-40 bg-gradient-to-br from-purple-400 t… 2% Remix <Form method="post" style={{ display: 'flex', gap: 8, marginBottom: 20 }}> <input type="hidden" name="_intent" value="add" /> <input name="name" placeholder="姓名*" required style={input… 2% LightGBM ``` 正样本比例: 35.62% Training until validation scores don't improve for 20 rounds [50] valid_0's auc: 0.8234 [100] valid_0's auc: 0.8456 Early stopping, best iteration is [87] 测试准确率: 0.7823 最佳迭代轮次: 87 最… 2% Pytest ``` test_math_utils.py::test_divide_normal PASSED test_math_utils.py::test_divide_by_zero PASSED test_math_utils.py::test_is_prime[1-False] PASSED test_math_utils.py::test_is_prime[2-True] PASSED test… 2% Grafana ```json { "dashboard": { "title": "主机监控总览", "tags": ["prometheus", "node"], "timezone": "browser", "panels": [ { "title": "CPU 使用率", "type": "timeseries",… 1%