ICode9

精准搜索请尝试: 精确搜索
  • asm-examples2021-12-02 12:02:28

            [root@centos7 aarch64-bare-metal-qemu]# cat libc.s /* Output "Hello world!" to standard output. For Aarch64 (ARM64) architecture with GNU assembler, using Linux libc functions. Assemble with : as -o hello.o hello.aarch64.linux.libc.ga

  • Limitations of the Lipschitz constant as a defense against adversarial examples2021-11-13 17:33:16

    目录概主要内容 Huster T., Chiang C. J. and Chadha R. Limitations of the lipschitz constant as a defense against adversarial examples. In European Conference on Machine Learning and Data Mining (ECML PKDD), 2018. 概 本文是想说明现有的依赖Lipschitz常数的以获

  • LinerProgression2021-11-13 12:34:50

    手动实现线性回归 点击查看代码 import torch import pandas as pd import numpy as np import matplotlib.pyplot as plt import random from torch.utils import data 构造一个人造数据集 点击查看代码 def synthetic_data(w, b, num_examples): """

  • Cesium开发资源导览2021-11-11 19:32:52

    前言 Cesium开发中用到的一些素材共享给大家,陆续补充,如有其他,可以留言。如有帮助记得点赞+收藏。 文档 名称地址APIhttps://cesium.com/learn/cesiumjs/ref-doc/示例https://sandcastle.cesium.com/Cesium中文网http://cesium.xin/Cesium中文网2http://cesiumcn.org/Ceisum介

  • Linux commands cheat sheet2021-11-06 09:59:34

    SYSTEM $ uname –a => Display linux system information $ uname –r => Display kernel release information (refer uname command in detail) $ cat /etc/redhat_release => Show which version of redhat installed $ uptime => Show how long system running

  • 在Ubuntu16.04中运行ORB-SLAM22021-11-04 19:05:21

    1、安装ORB-SLAM2 $ git clone https://github.com/raulmur/ORB_SLAM2.git ORB_SLAM2   2、编译ORB-SLAM2 $ cd ORB_SLAM2 $ chmod +x build.sh $ ./build.sh 3、从http://vision.in.tum.de/data/datasets/rgbd-dataset/download下载序列并解压缩。本文下载的是TUM数据集,。 $ .

  • SUNDIALS例子的命名规则2021-10-30 10:31:18

    sundials are of the form [slv][PbName][ls][prec]_[p] sundials的例子都是[slv][PbName]_[ls]_[prec]_[p] 这样的形式命名的, 中括号里面就是每个模块 [slv] identifies the solver (for cvode examples this is cv, while for fcvode examples, this is fcv); [slv]部分表

  • [CMake] 示例 多模块与安装(01-basic_E-installing Windows环境下,无法打开*.lib)2021-10-25 10:00:25

    该示例地址:https://github.com/ttroy50/cmake-examples.git 学cmake看这个仓库就可以了 【问题】在Windows环境下,编译01-basic_E-installing时,提示找不到lib文件 【原因】在Windows中,需要为导出类或函数设置dllexport之后,才会生成lib文件。 用官方给的例子。编译之后,你会

  • Tomcat Servlet示例页面之Cookie信息泄露2021-10-24 14:04:01

    文章目录 漏洞描述tomcat 介绍漏洞发现漏洞复现cookie信息免责声明 漏洞描述 在目标网站Tomcat Examples的遗留测试示例中,发现了Cookie Example示例页面显示了主站的所有Cookie信息,可通过其实现Cookie窃取。 tomcat 介绍 Tomcat的示例文件,它是Tomcat安装后默认显示的一

  • 2021-09-142021-09-14 22:06:22

    第一次保姆记录安装python 插件 学的python 可视化 当然Echart 也挺好玩的 https://echarts.apache.org/examples/zh/editor.html?c=bar-waterfall

  • CDH 提交任务(Flink)2021-09-03 18:33:26

    运行命令 /bin/flink run -t yarn-per-job --detached ./examples/streaming/TopSpeedWindowing.jar 1、错误    解决方案:调节yarn的yarn.scheduler.maximum-allocation-mb和yarn.nodemanager.resource.memory-mb  

  • RabbitMQ Peer Discovery on Kubernetes2021-08-29 17:01:29

    背景介绍 为了使资源被Kubernetes平台接管,基础资源得到统一管理、平台管理,RabbitMQ也可以实现部署到Kubernetes集群平台中 本文安装RabbitMQ-3.8.3版本,使用官方镜像rabbitmq:3.8.3-management 参考官方文档 Cluster Formation and Peer Discovery — RabbitMQ GitHub - rabbitm

  • Modern Perl2021-08-20 20:02:28

    At the time of writing, the current stable major Perl release is Perl 5.22. If you’re using an older version of Perl, you may not be able to run all of the examples in this book unmodified. The examples in this book work best with Perl 5.16.0 or newer, th

  • 【DL4J】centos eclipse运行dl4j-examples例子2021-08-05 21:00:06

    参考https://depiesml.wordpress.com/2015/08/26/dl4j-gettingstarted/ (建议用谷歌浏览器,翻译成中文看) 一、配置java、maven 二、配置eclipse 1、下载eclipsehttp://www.eclipse.org/downloads/ 2、配置maven插件 参考https://blog.csdn.net/qq_39209361/article/details/828

  • 第6节 生成类型2021-07-28 11:36:14

    介绍 CMake有许多内置的构建配置,可用于编译你的项目。它们指定优化级别以及调试信息是否包含在二进制文件中。 提供的级别包括: Release - 将标志-O3 -DNDEBUG添加到编译器 Debug - 添加标志-g MinSizeRel - 添加标志-Os -DNDEBUG RelWithDebInfo - 添加标志-O2 -g -DNDEBUG 本教

  • 第9节 使用Clang编译2021-07-28 11:36:03

    引言 当使用CMake构建时,可以设置C和C++编译器。此示例与hello-cmake示例相同,只是它显示了将编译器从默认的GCC更改为clang的最基本方法。 本教程中的文件如下: $ tree . ├── CMakeLists.txt ├── main.cpp [CMakeLists.txt] - 包含要运行的CMake命令。 # Set the minimum v

  • 30秒掌握一些python的高级用法,让旁人羡煞不已2021-07-21 11:02:24

    1.数组再分组 对一个列表根据所需要的大小进行细分: 效果如下:   EXAMPLES chunk([1,2,3,4,5],2)# [[1,2],[3,4],5] return中,map的第二个参数是一个列表,map会将列表中的每一个元素用于调用第一个参数的 function 函数,返回包含每次 function 函数返回值的新列表。 2.数字转数

  • 没有什么不可能!Python 30秒就能学会的漂亮短代码,你也可以!2021-07-20 21:57:47

    哈喽~大家好,我是恰恰,又到了有趣的Python学习时间,在我身边有好多同学会跟我说,Python有点难啊,我英语不好啊!数学不好啊!可是他们不知道的是,Python其实是又简洁又实用,不论大人小孩基本都可以学会,你说你不信?那就来看看下面的代码吧! 1.数组再分组 对一个列表根据所需要的大小进行细分:

  • Apache ShenYu 快速开始2021-07-05 15:03:08

    避免重复造轮子,并且官方文档比较丰富,提供了中文,涉及到官网有的直接提供链接。 简介 https://shenyu.apache.org/zh/projects/shenyu/overview/ 快速开始 环境搭建 官方文档: https://shenyu.apache.org/zh/projects/shenyu/shenyu-set-up/ 官方提供多种方式,为了比较直观,我们采

  • spark on k8s提交任务脚本示例2021-07-02 09:53:53

    bin/spark-submit \ --master k8s://https://192.168.xxx.10:6443 \ --deploy-mode cluster \ --name spark-pi \ --class org.apache.spark.examples.SparkPi \ --conf spark.executor.instances=3 \ --conf spark.kubernetes.authenticate.dr

  • 有趣的css 微信小程序,各种水平居中,垂直居中,文字,图片2021-06-26 22:00:41

    感谢大佬 http://www.ruanyifeng.com/blog/2015/07/flex-examples.html 在以上地址查看 另外需记住 图片垂直居中,需在上层加高度,必须,必须,必须 类似 <view style="height:170px;background-color:#FFFFFF;"> <view style="display: flex;justify-content: center;align-item

  • 可微渲染 SoftRas 实践2021-06-19 10:35:16

    SoftRas 是目前主流三角网格可微渲染器之一。 可微渲染通过计算渲染过程的导数,使得从单张图片学习三维结构逐渐成为现实。可微渲染目前被广泛地应用于三维重建,特别是人体重建、人脸重建和三维属性估计等应用中。 安装 conda 安装 PyTorch 环境: conda create -n torch python=3.8 -

  • Activiti Core 7.0.0.Beta1 入门2021-06-17 23:59:42

    Activiti Core 7.0.0.Beta1 入门 我们刚刚向Maven Central发布了Activiti Core 和 Activiti Cloud 7.0.0.Beta1,我们想重点介绍新的Process 和 Task Runtime API。 创建新 API 的目的很明确,旨在满足以下要求: 为我们的云方法提供清晰的路径隔离内部和外部 API 以提供向前的向后

  • PowerApps Replace Function with examples2021-06-11 17:04:29

        Also, by taking some simple scenarios, we will cover these below topics as: PowerApps Substitute function PowerApps Replace and Substitute function Examples PowerApps replace all character in string PowerApps remove special characters from string Po

  • 李代数和表示理论导学-Definitions and first examples2021-06-05 19:57:05

    Definitions and first examples Let L L L be the real vector space R 3

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有