【理财类-01-08】20260716 ZFB积存金“多笔买入 一笔卖出的”收益计算(Python)回本平衡测算目标收益定价持仓损益结算
背景需求【理财类-01-05】20260715ZFB积存金“差价”收益计算Python回本平衡测算目标收益定价持仓损益结算https://mp.csdn.net/mp_blog/creation/editor/162901013等了一天单笔买入的积存金没有达到回本金额所以积存金快进快出赚差价只是理想状态又一次套住了。但是我看到之前套住了两笔积存金的均价从1027元降低到902元。所以我想做一个“多笔买入、一次卖出”的回本价预估一、“多笔买入一次卖出”的保本盈亏平衡计算器 积存金多笔合并一笔卖出保本盈亏平衡计算器多笔一次性卖出 1、支付宝积存金 卖出手续费固定0.4% 2、多笔持仓汇总计算整仓保本卖出单价 豆包、阿夏 20260716 def calc_multi_gold_break_even(buy_list): :param buy_list: 列表元素为元组(买入单价, 克重)存放所有买入记录 total_weight 0.0 total_capital 0.0 # 汇总全部持仓总克重、总投入本金 for p, w in buy_list: total_capital p * w total_weight w if total_weight 0: raise ValueError(总克重不能为0) # 整仓平均成本价 avg_cost total_capital / total_weight # 保本公式卖出价*(1-0.004) 平均成本 sell_break_price avg_cost / 0.996 rise_per_gram sell_break_price - avg_cost rise_rate rise_per_gram / avg_cost * 100 total_sell_value sell_break_price * total_weight sell_fee total_sell_value * 0.004 net_receive total_sell_value - sell_fee total_profit net_receive - total_capital profit_rate total_profit / total_capital * 100 # 打印每一笔明细 print( 全部买入持仓明细 ) for idx, (p, w) in enumerate(buy_list, 1): single_cost p * w print(f第{idx}笔单价{p:.2f}元/g克重{w:.4f}g投入{single_cost:.2f}元) print(- * 60) print(f合计总克重{total_weight:.4f} g) print(f合计总投入本金{total_capital:.2f} 元) print(f持仓平均成本价{avg_cost:.2f} 元/g) print(- * 60) print(f整仓保本卖出单价{sell_break_price:.2f} 元/克) print(f每克需要上涨{rise_per_gram:.2f} 元) print(f上涨幅度{rise_rate:.3f} %) print(- * 60) print(f保本卖出总市值{total_sell_value:.2f} 元) print(f卖出手续费(0.4%){sell_fee:.2f} 元) print(f卖出实际到手{net_receive:.2f} 元) print(f保本总盈亏{total_profit:.2f} 元收益率{profit_rate:.3f} %) return { 总克重: round(total_weight, 4), 总本金: round(total_capital, 2), 平均成本: round(avg_cost, 2), 保本卖出价: round(sell_break_price, 2) } if __name__ __main__: # 你的三笔买入记录 buy_records [ (1040.63, 1.0282), (1029.48, 1.0199), (879.1, 11.3753), (878.5, 11.3830), ] res calc_multi_gold_break_even(buy_records)在代码最后部分把多笔买入的 价格、克数手动输入目前四笔的均价是运行后结果显示四笔均价是891.7元需要再涨3.58元 在895.28元卖出可以保本。二、“多笔买入一次卖出”的目标收益定价计算器用同样思路制作目标收益定价计算器 第二版多笔合并 目标收益定价计算器指定每克纯利求卖出价 1、ZFB积存金ZSYH 多笔持仓一次性卖出设定每克固定纯收入计算目标卖出价 2、卖出手续费固定0.4% 新增本金收益率目标总纯利÷投入本金×100% 豆包、阿夏 20260716 def calc_multi_gold_profit_target(buy_list, target_profit_per_g): sell_fee_rate 0.004 total_weight 0.0 total_capital 0.0 # 汇总所有买入记录 for p, w in buy_list: total_capital p * w total_weight w if total_weight 0: raise ValueError(总持仓克重不能为0或负数) total_capital round(total_capital, 2) # 目标总纯利润 target_total_profit target_profit_per_g * total_weight # 卖出后需要到手的总现金 target_get_cash total_capital target_total_profit # 推导公式到手现金 卖出单价 * 总克重 * (1 - 手续费率) need_sell_price target_get_cash / (total_weight * (1 - sell_fee_rate)) avg_cost total_capital / total_weight rise_per_gram need_sell_price - avg_cost rise_percent rise_per_gram / avg_cost * 100 total_sell_amount need_sell_price * total_weight deduct_fee total_sell_amount * sell_fee_rate # 目标收益率 target_profit_rate target_total_profit / total_capital * 100 if total_capital ! 0 else 0 # 打印每笔持仓明细 print( * 50) print( 支付宝浙商积存金【多笔合并盈利测算】) print(f卖出手续费固定{sell_fee_rate*100}%) print( * 50) print(【持仓买入明细】) for idx, (price, w) in enumerate(buy_list, 1): single_cost price * w print(f第{idx}笔单价{price:.2f}元/g克重{w:.4f}g投入{single_cost:.2f}元) print(- * 60) print(f合计总持有克重{total_weight:.4f} g) print(f合计总投入本金{total_capital:.2f} 元) print(f整仓平均成本价{avg_cost:.2f} 元/g) print(- * 60) print(f目标每克纯收益{target_profit_per_g:.2f} 元) print(f目标全部总纯收益{target_total_profit:.2f} 元) print(f目标本金收益率{target_profit_rate:.3f} %) print(- * 60) print(f达成目标必须卖出单价{need_sell_price:.2f} 元/克) print(f金价相对成本需上涨{rise_per_gram:.2f} 元/克) print(f对应上涨幅度{rise_percent:.3f} %) print(- * 60) print(f卖出总成交额{total_sell_amount:.2f} 元) print(f卖出扣除手续费{deduct_fee:.2f} 元) print(f卖出到手总现金{target_get_cash:.2f} 元) print( * 50) result { 总克重: round(total_weight, 4), 总本金: total_capital, 平均成本: round(avg_cost, 2), 目标每克纯利: target_profit_per_g, 目标总利润: round(target_total_profit, 2), 目标收益率%: round(target_profit_rate, 3), 所需卖出单价: round(need_sell_price, 2), 每克上涨金额: round(rise_per_gram, 2), 涨幅%: round(rise_percent, 3), 卖出手续费: round(deduct_fee, 2), 到手金额: round(target_get_cash, 2) } return result if __name__ __main__: # 1. 填写你的多笔买入列表 (买入单价, 克重) buy_records [ (1040.63, 1.0282), (1029.48, 1.0199), (879.1, 11.3753), (878.5, 11.3830), ] # 设置目标每克纯收益 target_per_gain 5 # 执行计算 res calc_multi_gold_profit_target(buy_records, target_per_gain) # 交互式输入模式取消注释即可使用 # try: # count int(input(一共有几笔持仓)) # records [] # for i in range(1, count1): # p float(input(f第{i}笔买入单价)) # w float(input(f第{i}笔克重)) # records.append((p, w)) # target float(input(目标每克纯收益(元))) # calc_multi_gold_profit_target(records, target) # except Exception as e: # print(输入错误, e)前文提到895.28元保本加上5元900.3元才能每克5元的收入三、“多笔买入一次卖出”的持仓实际损益计算器修改多笔参数假设卖出价是910元 第三版多笔合并持仓实际损益计算器多笔买入统一卖出输入卖出价算盈亏可负 1、ZFB积存金ZSYH 多笔持仓一次性卖出输入卖出单价自动计算整体净收益 2、卖出手续费固定0.4% 新增收益率 总净收益 ÷ 投入本金 × 100% 豆包、阿夏 20260716 def calc_multi_gold_actual_profit(buy_list, sell_price): sell_fee_rate 0.004 # 卖出手续费0.4% total_weight 0.0 total_capital 0.0 # 汇总所有多笔买入总克重、总投入本金 for p, w in buy_list: total_capital p * w total_weight w if total_weight 0: raise ValueError(总持仓克重不能为0或负数) total_capital round(total_capital, 2) avg_cost total_capital / total_weight # 卖出总成交额 sell_total sell_price * total_weight # 卖出手续费 fee sell_total * sell_fee_rate # 卖出实际到手现金 get_cash sell_total - fee # 整体净盈亏负数亏损 total_profit get_cash - total_capital # 每克平均净收益 profit_per_g total_profit / total_weight # 本金收益率 profit_rate total_profit / total_capital * 100 if total_capital ! 0 else 0 # 打印明细 print( * 55) print( 支付宝浙商积存金【多笔合并实际损益测算】) print(f卖出手续费成交金额的{sell_fee_rate*100}%) print( * 55) print(【全部买入持仓明细】) for idx, (price, w) in enumerate(buy_list, 1): single_cost price * w print(f第{idx}笔买入单价{price:.2f}元/g克重{w:.4f}g单笔本金{single_cost:.2f}元) print(- * 60) print(f合计总持有克重{total_weight:.4f} g) print(f合计投入总本金{total_capital:.2f} 元) print(f整仓平均成本价{avg_cost:.2f} 元/g) print(f统一卖出单价{sell_price:.2f} 元/g) print(- * 60) print(f卖出总成交额{sell_total:.2f} 元) print(f卖出扣除手续费{fee:.2f} 元) print(f卖出到手总金额{get_cash:.2f} 元) print(- * 60) print(f整体净收益{total_profit:.2f} 元负数代表亏损) print(f每克平均净收益{profit_per_g:.2f} 元/克) print(f本金收益率{profit_rate:.3f} %净收益÷总投入本金) print( * 55) # 返回计算结果字典 res { 总克重: round(total_weight, 4), 总本金: total_capital, 平均成本: round(avg_cost, 2), 卖出单价: sell_price, 卖出成交额: round(sell_total, 2), 卖出手续费: round(fee, 2), 到手金额: round(get_cash, 2), 总净盈亏: round(total_profit, 2), 每克盈亏: round(profit_per_g, 2), 收益率%: round(profit_rate, 3) } return res if __name__ __main__: # 1、固定多笔持仓数据你的三笔买入记录 buy_records [ (1040.63, 1.0282), (1029.48, 1.0199), (879.1, 11.3753), (878.5, 11.3830), ] # 设置统一卖出单价自行修改 sell_target_price 910.0 # 执行计算 result calc_multi_gold_actual_profit(buy_records, sell_target_price) # 交互式手动录入模式取消注释启用 # try: # num int(input(一共有几笔积存金持仓)) # buy_data [] # for i in range(1, num 1): # p_in float(input(f第{i}笔买入单价(元/g))) # w_in float(input(f第{i}笔克重(g))) # buy_data.append((p_in, w_in)) # sell_p float(input(整仓统一卖出单价(元/g))) # calc_multi_gold_actual_profit(buy_data, sell_p) # except Exception as err: # print(输入异常, err)感悟积存金只能做地埋高卖做多的差价所以风险极大。四、降低平均价格如何补仓等了两天积存金价格越来越低在876-878之间徘徊但我没有钱补仓了。我想计算一下如果把平均价压到878元还需要补多少克、多少钱 补仓计算 积存金多笔合并一笔卖出保本盈亏平衡计算器 加仓摊薄成本测算 1、支付宝积存金 卖出手续费固定0.4% 2、多笔持仓汇总计算整仓保本卖出单价 3、新增给定加仓金价计算需要再买多少克才能把平均成本压到目标价以内 豆包、阿夏 20260716 def calc_multi_gold_break_even(buy_list): :param buy_list: 列表元素为元组(买入单价, 克重)存放所有买入记录 total_weight 0.0 total_capital 0.0 # 汇总全部持仓总克重、总投入本金 for p, w in buy_list: total_capital p * w total_weight w if total_weight 0: raise ValueError(总克重不能为0) # 整仓平均成本价 avg_cost total_capital / total_weight # 保本公式卖出价*(1-0.004) 平均成本 sell_break_price avg_cost / 0.996 rise_per_gram sell_break_price - avg_cost rise_rate rise_per_gram / avg_cost * 100 total_sell_value sell_break_price * total_weight sell_fee total_sell_value * 0.004 net_receive total_sell_value - sell_fee total_profit net_receive - total_capital profit_rate total_profit / total_capital * 100 # 打印每一笔明细 print( 全部买入持仓明细 ) for idx, (p, w) in enumerate(buy_list, 1): single_cost p * w print(f第{idx}笔单价{p:.2f}元/g克重{w:.4f}g投入{single_cost:.2f}元) print(- * 60) print(f合计总克重{total_weight:.4f} g) print(f合计总投入本金{total_capital:.2f} 元) print(f持仓平均成本价{avg_cost:.2f} 元/g) print(- * 60) print(f整仓保本卖出单价{sell_break_price:.2f} 元/克) print(f每克需要上涨{rise_per_gram:.2f} 元) print(f上涨幅度{rise_rate:.3f} %) print(- * 60) print(f保本卖出总市值{total_sell_value:.2f} 元) print(f卖出手续费(0.4%){sell_fee:.2f} 元) print(f卖出实际到手{net_receive:.2f} 元) print(f保本总盈亏{total_profit:.2f} 元收益率{profit_rate:.3f} %) return { 总克重: round(total_weight, 4), 总本金: round(total_capital, 2), 平均成本: round(avg_cost, 2), 保本卖出价: round(sell_break_price, 2) } def calc_add_weight_to_lower_avg(total_capital, total_weight, target_avg, add_price): 计算需要加仓多少克才能把平均成本压到 target_avg 以内 :param total_capital: 原有总本金 :param total_weight: 原有总克重 :param target_avg: 目标平均成本如878 :param add_price: 接下来加仓的单价 :return: 字典包含所需加仓克重、加仓总金额等 old_avg total_capital / total_weight print(\n 加仓摊薄成本测算 ) print(f当前持仓平均成本{old_avg:.2f} 元/g) print(f目标平均成本上限{target_avg:.2f} 元/g) print(f本次加仓买入单价{add_price:.2f} 元/g) print(- * 50) if add_price target_avg: print(⚠️ 警告加仓金价 ≥ 目标成本无论买多少克平均成本无法压到目标值以下) return { 可行: False, 需加仓克重: None, 加仓总金额: None } # 计算公式推导得出最少加仓克重 numerator target_avg * total_weight - total_capital denominator add_price - target_avg min_add_x numerator / denominator # 向上取0.0001g积存金最小单位精度 import math min_add_x math.ceil(min_add_x * 10000) / 10000 add_total_money min_add_x * add_price # 验算加仓后新平均成本 new_total_cap total_capital add_total_money new_total_w total_weight min_add_x new_avg new_total_cap / new_total_w print(f至少需要加仓克重{min_add_x:.4f} g) print(f加仓需要投入金额{add_total_money:.2f} 元) print(f加仓后总克重{new_total_w:.4f} g) print(f加仓后新平均成本{new_avg:.2f} 元/g) print(- * 50) return { 可行: True, 最少加仓克重: round(min_add_x, 4), 加仓投入金额: round(add_total_money, 2), 加仓后总克重: round(new_total_w, 4), 加仓后平均成本: round(new_avg, 2) } if __name__ __main__: # 你的四笔买入记录 buy_records [ (1040.63, 1.0282), (1029.48, 1.0199), (879.1, 11.3753), (878.5, 11.3830), ] res calc_multi_gold_break_even(buy_records) # 加仓测算参数 target_average 874.0 # 目标平均成本压到878以内(878只是平均价还要减去3.65的手续费 所以就是874左右) add_buy_price 872.0 # 假设接下来加仓金价875元/g低于878才能摊薄 # calc_add_weight_to_lower_avg( total_capitalres[总本金], total_weightres[总克重], target_avgtarget_average, add_priceadd_buy_price )平均价压到878但是还要扣掉3.62元手续费所以压价到874这个预估没有测试过一定能再向下降低价格要再买20万220克。但是我觉得不太对没有输入补仓的买入价 积存金多笔合并一笔卖出保本盈亏平衡计算器 加仓摊薄成本测算 1、支付宝积存金 卖出手续费固定0.4% 2、多笔持仓汇总计算整仓保本卖出单价 3、新增自定义补仓买入价计算最少加仓克重把平均成本压到874元以内 豆包、阿夏 20260716 import math def calc_multi_gold_break_even(buy_list): :param buy_list: 列表元素为元组(买入单价, 克重)存放所有买入记录 total_weight 0.0 total_capital 0.0 # 汇总全部持仓总克重、总投入本金 for p, w in buy_list: total_capital p * w total_weight w if total_weight 0: raise ValueError(总克重不能为0) # 整仓平均成本价 avg_cost total_capital / total_weight # 保本公式卖出价*(1-0.004) 平均成本 sell_break_price avg_cost / 0.996 rise_per_gram sell_break_price - avg_cost rise_rate rise_per_gram / avg_cost * 100 total_sell_value sell_break_price * total_weight sell_fee total_sell_value * 0.004 net_receive total_sell_value - sell_fee total_profit net_receive - total_capital profit_rate total_profit / total_capital * 100 # 打印每一笔明细 print( 全部买入持仓明细 ) for idx, (p, w) in enumerate(buy_list, 1): single_cost p * w print(f第{idx}笔单价{p:.2f}元/g克重{w:.4f}g投入{single_cost:.2f}元) print(- * 60) print(f合计总克重{total_weight:.4f} g) print(f合计总投入本金{total_capital:.2f} 元) print(f持仓当前平均成本价{avg_cost:.2f} 元/g) print(- * 60) print(f整仓保本卖出单价{sell_break_price:.2f} 元/克) print(f每克需要上涨{rise_per_gram:.2f} 元) print(f上涨幅度{rise_rate:.3f} %) print(- * 60) print(f保本卖出总市值{total_sell_value:.2f} 元) print(f卖出手续费(0.4%){sell_fee:.2f} 元) print(f卖出实际到手{net_receive:.2f} 元) print(f保本总盈亏{total_profit:.2f} 元收益率{profit_rate:.3f} %) return { 总克重: round(total_weight, 4), 总本金: round(total_capital, 2), 平均成本: round(avg_cost, 2), 保本卖出价: round(sell_break_price, 2) } def calc_add_weight_to_lower_avg(total_capital, total_weight, target_avg, add_price): 计算需要加仓多少克才能把平均成本压到 target_avg 以内 :param total_capital: 原有总本金 :param total_weight: 原有总克重 :param target_avg: 目标平均成本上限本次固定874 :param add_price: 补仓的买入单价自定义输入必须小于目标均价才能摊薄 :return: 字典包含所需加仓克重、加仓总金额等 old_avg total_capital / total_weight print(\n 加仓摊薄成本测算 ) print(f当前持仓平均成本{old_avg:.2f} 元/g) print(f目标平均成本上限{target_avg:.2f} 元/g) print(f本次补仓买入单价{add_price:.2f} 元/g) print(- * 50) # 判断补仓价是否低于目标均价 if add_price target_avg: print(f⚠️ 警告补仓金价 {add_price:.2f} ≥ 目标成本 {target_avg:.2f}) print(无论买入多少克平均成本都无法压到目标值以下无需加仓) return { 可行: False, 需加仓克重: None, 加仓总金额: None } # 计算公式求解最小加仓克重 numerator target_avg * total_weight - total_capital denominator add_price - target_avg min_add_x numerator / denominator # 向上取到0.0001g积存金最小精度 min_add_x math.ceil(min_add_x * 10000) / 10000 add_total_money min_add_x * add_price # 验算加仓后新平均成本 new_total_cap total_capital add_total_money new_total_w total_weight min_add_x new_avg new_total_cap / new_total_w print(f至少需要加仓克重{min_add_x:.4f} g) print(f加仓需要投入金额{add_total_money:.2f} 元) print(f加仓后总持有克重{new_total_w:.4f} g) print(f加仓后新平均成本{new_avg:.2f} 元/g) print(- * 50) return { 可行: True, 最少加仓克重: round(min_add_x, 4), 加仓投入金额: round(add_total_money, 2), 加仓后总克重: round(new_total_w, 4), 加仓后平均成本: round(new_avg, 2) } if __name__ __main__: # 你的持仓记录 buy_records [ (1040.63, 1.0282), (1029.48, 1.0199), (879.1, 11.3753), (878.5, 11.3830), ] # 先计算保本相关数据 res calc_multi_gold_break_even(buy_records) # 自定义参数区 target_average 874.0 # 目标均价压到874以内 add_buy_price 870.0 # 【自行修改】补仓买入单价必须小于874才有效 # # 执行加仓测算 calc_add_weight_to_lower_avg( total_capitalres[总本金], total_weightres[总克重], target_avgtarget_average, add_priceadd_buy_price ) # 交互式输入补仓价格取消注释可手动输入实时金价 # print(\n 手动输入实时补仓金价 ) # input_add_price float(input(请输入当前积存金买入单价(元/g))) # calc_add_weight_to_lower_avg(res[总本金], res[总克重], target_average, input_add_price)他说买入补仓价是870元*109克才能让成本降到874元也就是878补仓的话没法把平均价压到874。另外写一个EXCEL测试无论补仓价位买多少克10000000000G平均价只会无限接近与补仓买入价878元所以只能等伦敦金的波动起到它会突然拉涨。小红书说支付宝的积存金的预约单经常没法成交还是要手动挂单才能生效。不过我设置的预约单成交了已执行不过不是第一时间成交要排队等候成交要金价来回摆动到这个价位几次才能成交。预约的好处就是能整数买入卖出。

相关新闻

打造全自动数字商品售货系统的完整实践指南

打造全自动数字商品售货系统的完整实践指南

打造全自动数字商品售货系统的完整实践指南 【免费下载链接】dujiaoka 🦄独角数卡(自动售货系统)-开源站长自动化售货解决方案、高效、稳定、快速!🚀🚀🎉🎉 项目地址: https://gitcode.com/gh_mirrors/du…

2026/7/28 4:16:55 阅读更多 →
ESP-IoT-Solution雷达传感:打造智能人体存在检测的终极指南

ESP-IoT-Solution雷达传感:打造智能人体存在检测的终极指南

ESP-IoT-Solution雷达传感:打造智能人体存在检测的终极指南 【免费下载链接】esp-iot-solution Espressif IoT Library. IoT Device Drivers, Documentations and Solutions. 项目地址: https://gitcode.com/GitHub_Trending/es/esp-iot-solution ESP-IoT-So…

2026/7/28 17:28:49 阅读更多 →
突破性浏览器音乐解密工具:一站式音频格式转换终极方案

突破性浏览器音乐解密工具:一站式音频格式转换终极方案

突破性浏览器音乐解密工具:一站式音频格式转换终极方案 【免费下载链接】unlock-music 在浏览器中解锁加密的音乐文件。原仓库: 1. https://github.com/unlock-music/unlock-music ;2. https://git.unlock-music.dev/um/web 项目地址: http…

2026/7/29 10:41:30 阅读更多 →

最新新闻

AI重塑工作方式的底层逻辑(2023全球127家头部企业实证数据首发)

AI重塑工作方式的底层逻辑(2023全球127家头部企业实证数据首发)

更多请点击: https://intelliparadigm.com 第一章:AI重塑工作方式的底层逻辑(2023全球127家头部企业实证数据首发) 人工智能并非简单替代人力,而是重构“任务—能力—组织”三重耦合关系。基于对2023年覆盖金融、制造…

2026/7/30 13:25:19 阅读更多 →
仅剩最后237份|扩散模型核心论文《Denoising Diffusion Probabilistic Models》逐行精读笔记(含手写梯度推导+代码映射表)

仅剩最后237份|扩散模型核心论文《Denoising Diffusion Probabilistic Models》逐行精读笔记(含手写梯度推导+代码映射表)

更多请点击: https://intelliparadigm.com 第一章:扩散模型的诞生背景与核心思想 在深度生成模型的发展历程中,扩散模型(Diffusion Models) emerged as a paradigm shift — not through incremental refinement, bu…

2026/7/30 13:25:19 阅读更多 →
React、Vue与Svelte框架核心技术解析与选型指南

React、Vue与Svelte框架核心技术解析与选型指南

1. 现代前端框架生态全景观察前端开发领域在过去十年经历了翻天覆地的变化。记得2015年我刚入行时,jQuery还是项目标配,如今各种现代框架已经构建起完整的技术生态。这次我们就来深度剖析React、Vue、Svelte三大主流框架的设计哲学,以及Vite这…

2026/7/30 13:25:19 阅读更多 →
半透明豆包 AI 水印难以清除?4 套 PS 无痕修图完整教程

半透明豆包 AI 水印难以清除?4 套 PS 无痕修图完整教程

1. 文章解决的核心问题、适用人群与前置说明1.1 核心待解决故障使用豆包 AI 生成图片后,画面右下角会生成半透明文字 Logo 水印,水印与原图光影、像素深度融合,使用常规 PS 工具修复后存在以下问题:放大图片可见淡文字残影&#x…

2026/7/30 13:25:19 阅读更多 →
Windows平台安装与使用masscan的完整指南

Windows平台安装与使用masscan的完整指南

1. Windows平台安装masscan的完整指南masscan作为一款高性能的网络端口扫描工具,原本主要运行在Linux环境下,但很多安全从业者和网络管理员需要在Windows平台使用它。本文将详细介绍如何在Windows系统上安装和运行masscan.exe,包括从获取可执…

2026/7/30 13:25:19 阅读更多 →
网盘直链下载助手终极指南:3分钟解锁六大云盘高速下载

网盘直链下载助手终极指南:3分钟解锁六大云盘高速下载

网盘直链下载助手终极指南:3分钟解锁六大云盘高速下载 【免费下载链接】baiduyun 油猴脚本 - 一个免费开源的网盘下载助手 项目地址: https://gitcode.com/gh_mirrors/ba/baiduyun 还在为网盘限速而苦恼吗?每次下载大文件时,看着几十K…

2026/7/30 13:24:18 阅读更多 →

日新闻

Windows驱动存储终极清理工具:DriverStoreExplorer完全指南

Windows驱动存储终极清理工具:DriverStoreExplorer完全指南

Windows驱动存储终极清理工具:DriverStoreExplorer完全指南 【免费下载链接】DriverStoreExplorer Driver Store Explorer 项目地址: https://gitcode.com/gh_mirrors/dr/DriverStoreExplorer 您是否曾因Windows系统盘空间不足而烦恼?是否遇到过设…

2026/7/30 0:00:13 阅读更多 →
如何3步掌握Video Download Helper:网页视频下载的完整实战指南

如何3步掌握Video Download Helper:网页视频下载的完整实战指南

如何3步掌握Video Download Helper:网页视频下载的完整实战指南 【免费下载链接】VideoDownloadHelper Chrome Extension to Help Download Video for Some Video Sites. 项目地址: https://gitcode.com/gh_mirrors/vi/VideoDownloadHelper 你是否曾经在浏览…

2026/7/30 0:00:13 阅读更多 →
“双减”后首个AI备课压力测试报告:覆盖32所中小学的176节AI辅助课,暴露4大隐性增负节点

“双减”后首个AI备课压力测试报告:覆盖32所中小学的176节AI辅助课,暴露4大隐性增负节点

更多请点击: https://intelliparadigm.com 第一章:AI 教师备课辅助 AI 教师备课辅助系统正逐步成为教育数字化转型的核心支撑工具,它并非替代教师,而是通过语义理解、知识图谱与多模态生成能力,将教师从重复性劳动中解…

2026/7/30 0:00:13 阅读更多 →

周新闻

深度学习道路桥梁裂缝检测系统 道路桥梁裂缝检测数据集 道路桥梁病害识别检测数据集

深度学习道路桥梁裂缝检测系统 道路桥梁裂缝检测数据集 道路桥梁病害识别检测数据集

深度学习道路桥梁裂缝检测系统 数据集6000张 完整源码已标注数据集训练好的模型环境配置教程程序运行说明文档,可以直接使用!系统支持图片、视频、摄像头等多种方式检测裂缝,功能强大实用。 1数据集6000张 8各类别

2026/7/29 22:18:20 阅读更多 →
深度学习YOLO模型如何训练 PUBG 绝地求生目标检测数据集

深度学习YOLO模型如何训练 PUBG 绝地求生目标检测数据集

pubg数据集 精选原图1.42万数据 1.49万标签 无任何重复、算法增强或冗余图像! pubg绝地求生目标检测数据集 1分类:e_body,14905个标签,txt格式 共计14244张图,99%为640*640尺寸图像 适合yolo目标检测、AI训练关键词&am…

2026/7/29 14:34:28 阅读更多 →
Apex英雄目标检测数据集 深度学习框架YOLO如何训练APEX数据集

Apex英雄目标检测数据集 深度学习框架YOLO如何训练APEX数据集

Apex检测数据集数据集详情检测类别: allies enemy tag图片总量:7247张训练集:5139张验证集:1425张测试集:683张标注状态:全部已标注,即拿即用数据格式:支持YOLO格式及其他格式&#…

2026/7/29 15:00:03 阅读更多 →

月新闻