摘要:
1.准备好网络模型代码 import torch import torch.nn as nn import torch.optim as optim # BP_36: 输入2个节点,中间层36个节点,输出25个节点 class BP_36(nn.Module): def __init__(self) 阅读全文
摘要:
题目: 拿到一个数组,每次操作会将除了第x个元素之外的元素都翻倍,一共操作q次,求操作结束后所有元素之和 int main() { int n, q, xi; const long long mod = 1e9 + 7; cin >> n >> q; vector<long long> a(n); 阅读全文