首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏IT运维技术圈

    项目推荐--All-Defense-Tool

    项目部分内容截图: 需要的同学可以到下方连接获取 项目地址:https://github.com/guchangan1/All-Defense-Tool.git

    33340编辑于 2022-06-27
  • 来自专栏Seebug漏洞平台

    MIMIC Defense CTF 2019 final writeup

    上周有幸去南京参加了强网杯拟态挑战赛,运气比较好拿了第二名,只是可惜是最后8分钟被爆了,差一点儿真是有点儿可惜。

    1.2K20发布于 2019-06-02
  • 来自专栏机器学习、深度学习

    目标检测--Light-Head R-CNN: In Defense of Two-Stage Object Detector

    Light-Head R-CNN: In Defense of Two-Stage Object Detector Code will be make publicly available 本文对

    1.3K90发布于 2018-01-03
  • 来自专栏VRPinea

    VR塔防游戏《The Last Day Defense VR》来袭,快来捍卫自己的家园吧!

    日前,游戏开发商ARVI LLC推出一款VR塔防游戏——《The Last Day Defense VR》。 小编了解到,《The Last Day Defense VR》的背景是:在遥远的未来,地球上的两个庞大帝国为争夺赖以生存的的资源,爆发了激烈的军事冲突。以下为该游戏的视频: ? 同时,《The Last Day Defense VR》还为玩家提供了两种类型的地图,分别为沙漠和森林。 ? 此外,《The Last Day Defense VR》还为玩家提供了虚拟的控制器,玩家利用该控制器可以选择其中一方的部队,并为其布置强大的防御体系,以此来抵御敌方的进攻。 目前,《The Last Day Defense VR》已登陆Steam平台,支持HTC Vive。

    54130发布于 2018-07-26
  • 来自专栏CSDN旧文

    图论--差分约束--POJ 2983--Is the Information Reliable?

    Draco established a line of defense called Grot. Grot is a straight line with N defense stations. Today you the administrator of Zibu’s Intelligence Department got a piece of information about Grot’s defense Precise tip is in the form of P A B X, means defense station A is X light-years north of defense station Vague tip is in the form of V A B, means defense station A is in the north of defense station B, at least Output “Reliable” if It is possible to arrange N defense stations satisfying all the M tips, otherwise

    44630发布于 2020-10-28
  • 来自专栏网络安全技术点滴分享

    耶稣vs撒旦网络攻防对抗Bash脚本实战

    The script establishes a dynamic environment where defense mechanisms are tested against aggressive attacks robustness of security measures under attack.Supporting cybersecurity training and the improvement of defense " > $LOG_FILEecho "----------------------------------------" >> $LOG_FILE# Step 2: Deploy Blue Team defense measuresecho "[*] Deploying Blue Team defense measures..." | tee -a $LOG_FILEiptables -P INPUT DROP Analyze the log file ($LOG_FILE) for defense effectiveness and attack outcomes."

    21500编辑于 2025-08-22
  • 来自专栏Java进阶实战

    Java实现《七星传说》游戏开发详解

    ; // 构造方法 public Character(String name, int health, int attack, int defense) { this.name = name; this.health = health; this.attack = attack; this.defense = defense; ; // 构造方法 public Enemy(String name, int health, int attack, int defense) { this.name = name ; this.health = health; this.attack = attack; this.defense = defense; } // this.health = health; this.attack = attack; this.defense = defense; } public int

    43321编辑于 2024-12-24
  • 来自专栏CSDNToQQCode

    Rust专项——王者荣耀对战系统 - 综合运用Rust核心特性

    struct Item { name: String, price: u32, // 价格 attack_power: f64, // 攻击力加成 defense max_health: f64, // 最大生命值 health: f64, // 当前生命值 attack_power: f64, // 攻击力 defense += item.defense; total_health += item.health; total_magic += item.magic_power (&self) -> f64 { self.defense + self.items.iter().map(|i| i.defense).sum::<f64>() } (&self) -> f64 { self.defense + self.items.iter().map(|i| i.defense).sum::<f64>() }

    24910编辑于 2025-12-16
  • 来自专栏Soul Joy Hub

    对抗机器学习模型

    Defense 讲完attack,我们来讲怎么defense。 2.1 Passive Defense Passive Defense 主要是思想是在给模型做层“保护罩”。 2.2 Proactive Defense Proactive Defense 的主要思想是:找出漏洞,补起来。

    1.2K40发布于 2019-05-14
  • 来自专栏彭湖湾的编程世界

    【Vue】Vue中的父子组件通讯以及使用sync同步父子组件数据

    ="defense"> </son>

    智力: {{ wisdom }}

    膜法: {{ magic }}

    攻击: {{ attack }}

    防御: {{ defense }}

    </template> <script> import son from '. p>

    智力: {{ wisdom }}

    膜法: {{ magic }}

    攻击: {{ attack }}

    防御: {{ defense 增加膜法</button> <button @click="increment('attack')">增加攻击</button> <button @click="increment('<em>defense</em> <script> export default { props: { wisdom: Number, magic: Number, attack: Number, <em>defense</em>

5.3K110发布于 2018-01-03
  • 来自专栏Python大数据分析

    50题matplotlib从入门到精通

    ,Attack,HP的堆积条形图 pokemon = df['Name'][:5] hp = df['HP'][:5] attack = df['Attack'][:5] defense = df['Defense =0.8, label='Defense', color='blue', bottom=attack+hp) plt.bar(ind, attack, width=0.8, label='Attack' = ["HP ", "Attack", "Defense"] fig, ax = plt.subplots() ax.stackplot(x, y1, y2, y3) ax.legend(loc=' upper left', labels=labels) plt.xticks(rotation=90) plt.show() 44.公用x轴,展示前5个宝可梦的Defense,Attack,HP的折线图 ,Attack,HP数据 x = df['Attack'] y = df['Defense'] colors = df['HP'] plt.scatter(x, y, c=colors, alpha=

    1.7K20编辑于 2022-04-02
  • 来自专栏iRF射频前端产业观察

    ​2021年十大功率和射频市场收购案例

    the supplier of radio and data acquisition boards and recording systems for high-end commercial and defense Mercury Systems, a technology firm delivering open-architecture processing solutions to theaerospace and defense (IMC) to expand its RF portfolio inthe aerospace and defense markets. Qorvo aims to integrate the new company into its Infrastructure& Defense Products (IDP) business and

    48120编辑于 2022-05-16
  • 来自专栏CSDNToQQCode

    Rust专项——实战案例:王语嫣大战游坦之(服务器端)

    #[derive(Debug, Clone)] struct Player { name: String, hp: i32, skill_ready: bool, defense {"(格挡)"} else {""}, players["游坦之"].hp, if players["游坦之"].defense {"(格挡)"} else {""}, players[receiver].defense { 15 } else { 7 }; players.get_mut(receiver).unwrap().hp -= dmg; players.get_mut(receiver).unwrap().defense = false; log = format players[receiver].defense { 28 } else { 14 }; players.get_mut(receiver).unwrap().

    24210编辑于 2025-12-16
  • 来自专栏Datawhale专栏

    数据分析画图:50道练习玩转matplotlib

    宝可梦数据集可视化 41.展示前 5 个宝可梦的 Defense,Attack,HP 的堆积条形图 42.展示前 5 个宝可梦的 Attack,HP 的簇状条形图 43.展示前 5 个宝可梦的 Defense 的 x,y,c 属性,展示所有宝可梦的 Defense,Attack,HP 数据 47.展示所有宝可梦的攻击力的分布,bins=10 48.展示所有宝可梦 Type 1 的饼图 49.展示所有宝可梦 , defense, width=0.8, label='Defense', color='blue', bottom=attack+hp) plt.bar(ind, attack, width=0.8 x = df['Name'][:4] y1 = df['HP'][:4] y2 = df['Attack'][:4] y3 = df['Defense'][:4] labels = ["HP ", " Attack", "Defense"] fig, ax = plt.subplots() ax.stackplot(x, y1, y2, y3) ax.legend(loc='upper left',

    1.1K20发布于 2020-02-21
  • 来自专栏ADAS性能优化

    AI Weekly | Nov. 2, 2019

    Defense Innovation Board unveils AI ethics principles for the Pentagon AI ethics principles to guide U.S. military applications of artificial intelligence were approved today by the Defense Innovation Board Reid Hoffman on AI, defense, and ethics when scaling a startup LinkedIn coufounder Reid Hoffman shared

    26620编辑于 2022-05-13
  • 来自专栏量子位

    谷歌与军方合作新料:决定AI不用于武器前,还想帮军方搜集情报

    今天,外媒Defense One的编辑Patrick Tucker曝出了更多七原则内幕。 据Defense One报道,谷歌参会的目的,是想帮助军方进行SSE工作。SSE是个军事术语,指从指定地点收集信息、材料和人员,并对其进行分析、促进后续行动或支持刑事起诉。 Defense One向谷歌发言人询问了此事,但对方拒绝进一步回应。 作者系网易新闻·网易号“各有态度”签约作者

    32820发布于 2018-07-24
  • 来自专栏程序架道

    一周技术思考笔记(第49期)-到底是谁在需要一个接口

    width; private int height; private int weight; public void build() { //...工人盖房 } public void defense public interface BuildHouse { void build(); } public interface StrickCompetence { void defense(); } public void build() { //...工人盖房 } } public class Person implement StrickCompetence { public void defense public interface BrickInterface { void buildHouse(); void defense(); } 会有什么问题吗。 有,如果我就是一名盖房子的工人,我只需要buildHouse()的功能,如果使用Header interface,我就必须被迫依赖并实现defense()的功能,可是我当时并不想,也不需要拿着它来当武器用

    38810编辑于 2022-03-29
  • 来自专栏叶子的开发者社区

    机器人变身(类与对象)【期中模拟】

    include<iostream> #include"string" using namespace std; class robot { string name,kind; int hp,damage,defense string kind,int Rank):name(name),kind(kind),Rank(Rank){} void setkind(string kind) { hp=damage=defense =5*Rank; if(kind=="A") damage=10*Rank; else if(kind=="D") defense=10*Rank; else if(kind this->kind=kind; } void diplay(){cout<<name<<"--"<<kind<<"--"<<Rank<<"--"<<hp<<"--"<<damage<<"--"<<defense

    34730编辑于 2023-07-30
  • 来自专栏朴素人工智能

    DeepRobust-对抗攻击和防御pytorch库

    import PGDtraining from deeprobust.image.config import defense_params from deeprobust.image.netmodels.CNN Net() train_loader = torch.utils.data.DataLoader( datasets.MNIST('deeprobust/image/defense shuffle=True) test_loader = torch.utils.data.DataLoader( datasets.MNIST('deeprobust/image/defense transforms.Compose([transforms.ToTensor()])), batch_size=1000,shuffle=True) defense = PGDtraining(model, 'cuda') defense.generate(train_loader, test_loader, **defense_params["PGDtraining_MNIST

    2.4K20发布于 2020-06-19
  • 来自专栏机器之心

    CCS 2024 | 如何严格衡量机器学习算法的隐私泄露? ETH有了新发现

    DP-SGD 仍是一种强大的 empirical defense 我们采用高效的样本级评估(结合适应性攻击)来测试是否存在经验上优于差分隐私(DP)方法的 empirical defense。 许多 empirical defense 声称能够在现实环境中实现合理的隐私保护,同时提供比 DP-SGD 等具有强大可证明保证的方法更好的实用性。 如果 empirical defense 无论如何都会放弃可证明的保证,那么我们为何不对 DP-SGD 采取同样的策略呢? 具体来说,在 CIFAR-10 数据集上,我们的方法达到了与所有其他 empirical defense 相当的测试准确率,但却为最易受到攻击的样本提供了更强大的经验隐私保护。 因此,DP-SGD 不仅仅是理论上有保证的防御手段,同时也可以成为一种强有力的 empirical defense。 5. 结论 我们论文的主要结论是,隐私评估的具体方式至关重要!

    22200编辑于 2025-02-14
  • 领券