optimization

[894] Optimize arcpy scripts

ref: Parallel Processing Factor (Environment setting) ref: Write geoprocessing output to memory Parallel processing arcpy.env.parallelProcessingFactor ......
Optimize scripts arcpy 894

C#开源、功能强大、免费的Windows系统优化工具 - Optimizer

前言 今天给大家推荐一款由C#开源、功能强大、免费的Windows系统优化工具 - Optimizer。 工具介绍 Optimizer是一款功能强大的Windows系统优化工具,可帮助用户提高计算机性能、加强隐私和安全保护。该工具支持22种语言,同时提供了许多实用的功能,如关闭不必要的Windows ......
功能强大 Optimizer Windows 功能 工具

Docker - Optimized Dockerfile

We have the incentive to optimize our Dockerfile to build smaller images. Some of the points that we can probably come up with would be the following: ......
Dockerfile Optimized Docker

粒子群算法(Particle Swarm Optimization, PSO)

Particle Swarm Optimization 算法原理参考: https://zhuanlan.zhihu.com/p/404198434 Question 使用PSO算法计算函数$ f(x) = x_1^2 + 3 x_2^2 - x_1 + 2 x_2 - 5 $ 在 \(x \in ......
粒子 Optimization 算法 Particle Swarm

Worst-Case Optimal Joins

Worst-Case Optimal Joins 当且仅当连接算法的计算复杂度不高于AGM bound,该算法才是Worst-Case Optimal的。 而计算AGM bound,需要计算fractional edge cover,也就是最小边覆盖。它要求给每条边赋权,所有权重之和最小,并且每个顶 ......
Worst-Case Optimal Worst Joins Case

Proj. CRR Paper Reading: Optimal Speedup of Las Vegas Algorithms, Adaptive restart for stochastic synthesis

Title Adaptive restart for stochastic synthesis PLDI 2021 Task Distribute the power between multiple runs in stochastic program synthesis to accelerat ......

Common optimize technique

# Vectorization(矢量化) Before we understand the vectorization, we can see a common secnario. We have a array that has 100 float numbers, we want to calc ......
technique optimize Common

MySQL的Equality Range Optimization of Many-Valued Comparisons

最近新上线的系统中遇到一个SQL,明明可以使用索引,但是发现实际执行并没有使用到索引。SQL的主要特点是where子句中,in判断中有大量的条件。类似如下: select * FROM a WHERE td in ('2023-08-01') and fuid in ('2','3','41','4 ......

Compiler optimization

1. 化简 - 代数化简 - 常量折叠 2. 内联 - 内部函数和外部函数 3. 指针 - 指针别名 - 合并写入 - 不能跳跃 4. 矢量化 - 使用更宽的寄存器xmm和ymm - 自动调用标准库 - 使用SIMD汇编指令(特殊情况使用边界特判) 5. 循环 6. 结构体 - 结构体内存布局 7. ......
optimization Compiler

This TensorFlow binary is optimized to use available CPU instructions in performance-critical operations.

This TensorFlow binary is optimized to use available CPU instructions in performance-critical operations.To enable the following instructions: AVX2 FM ......

强化学习 Proximal Policy Optimization (PPO)

参考: [李宏毅老师课件](https://speech.ee.ntu.edu.tw/~tlkagk/courses/MLDS_2018/Lecture/PPO%20(v3).pdf) PPO = Policy Gradient 从 On-policy 到 Off-policy, 再加一些const ......
Optimization Proximal Policy PPO

【笔记】凸优化 Convex Optimization

## Differentiation **Def. Gradient** $f:{\cal X}\sube\mathbb{R} ^N\to \mathbb{R}$ is *differentiable*. Then the *gradient* of $f$ at ${\bf x}\in\cal{X ......
Optimization 笔记 Convex

optim.SGD

链接:https://www.zhihu.com/question/585468191/answer/2905219147 optim.SGD是PyTorch中的一个优化器,其实现了随机梯度下降(Stochastic Gradient Descent,SGD)算法。在深度学习中,我们通常使用优化器来 ......
optim SGD

Experience Replay Optimization

![](https://img2023.cnblogs.com/blog/1428973/202307/1428973-20230731085957589-2046683860.png) **发表时间:**2019 (IJCAI 2019) **文章要点:**这篇文章提出experience rep ......
Optimization Experience Replay

[CF1601C] Optimal Insertion

# Optimal Insertion ## 题面翻译 ### 题目大意 给定两个序列 $a,b$,长度分别为 $n,m(1\leq n,m\leq 10^6)$。接下来将 $b$ 中的所有元素以**任意方式**插入序列 $a$ 中**任意位置**,请找出一种插入方式使结果序列中的逆序对数量最小化, ......
Insertion Optimal 1601C 1601 CF

题解 CF1601C【Optimal Insertion】

特别鸣谢: ## problem 两个数组 $a,b$ 长度分别为 $n,m$。将 $b$ 的所有元素以任意顺序插入 $a$ 的任意位置,使最终序列逆序对数量最小,并输出这个值。$n,m\leq 10^6$。 ## solution $b$ 明显是排序成不降的最优,$a$ 原来的逆序对个数无法改变, ......
题解 Insertion Optimal 1601C 1601

Proximal Policy Optimization(PPO)算法原理介绍学习笔记

在了解PPO之前,首先需要了解Policy Gradient,PPO是建立在PG上的。 ### Policy Gradient 基本参考https://zhuanlan.zhihu.com/p/66205274进行整理。 给定状态和动作的序列 $s1\rightarrow a1\rightarrow ......
Optimization 算法 Proximal 原理 笔记

[CSS] Serve optimized images

Try throttling to a slow internet in the browser Dev tools and visit a website made up of HD images like unsplash. That's how to experience the pain o ......
optimized images Serve CSS

(GCC) gcc 编译选项 -fno-omit-frame-pointer,-fno-tree-vectorize,fno-optimize-sibling-calls;及内存泄漏、非法访问检测 ASAN

omit-frame-pointer 开启该选项,主要是用于去掉所有函数SFP(Stack Frame Pointer)的,即在函数调用时不保存栈帧指针SFP,代价是不能通过backtrace进行调试根据堆栈信息了。通过去掉SFP,可以提高程序运行速度,达到优化程序的目的。如果要打开栈指针,使用 - ......

【文献阅读】Optimization and perform criteria of a Stokes polarimeter based on two variable retarders

minimize the noise transmitted through the matrix 主要用三个参数衡量 indicator the condition number (CN) the Equally Weighted Variance (EWV) the error associat ......

AtCoder Regular Contest 164 E Segment-Tree Optimization

[洛谷传送门](https://www.luogu.com.cn/problem/AT_arc164_e "洛谷传送门") [AtCoder 传送门](https://atcoder.jp/contests/arc164/tasks/arc164_e "AtCoder 传送门") 妙妙题。 我们考虑 ......

论文阅读 | Penetration Testing Active Reconnaissance Phase – Optimized Port Scanning With Nmap Tool

我们可以使用 TCP 端口扫描对物联网设备进行分类吗?https://ieeexplore.ieee.org/document/8913346 xx xx --> # 1 介绍 在[10]中,我们根据统计属性(如活动周期,端口号,信令模式和密码套件)来表征物联网流量。此外,提出了一个多阶段机器学习模 ......

[ARC164E] Segment-Tree Optimization

# [ARC164E] Segment-Tree Optimization 题目大意是让你构造一棵广义线段树,给定若干个询问使得询问出的区间最大深度最小并且最大神帝的个数最少。感官上,我们认为满二叉树很优美,所以可以朝着这个方向思考。 首先,不难看出有一些区间中所有数在所有询问中被绑在了一起,即要么 ......
Segment-Tree Optimization Segment 164E Tree

【论文解析】EJOR 2011 A clustering procedure for reducing the number of representative solutions in the Pareto Front of multiobjective optimization problems

> 论文名称:A clustering procedure for reducing the number of representative solutions in the Pareto Front of multiobjective optimization problems ### 动机 假 ......

MySQL 磁盘爆了,是 optimize table 的锅

MySQL 磁盘爆了,是 optimize table 的锅 原创 张冲 DBA烂笔头 2023-06-27 10:57 发表于广东 收录于合集#mysql6个 2023-06-26 22:17左右,收到某系统的主库磁盘使用率告警。2023-06-26 23:02左右收到该系统的从库磁盘使用率告警。 ......
磁盘 optimize MySQL table

Comparing with traditional convex optimization methodology, what are advantages of PSO algorithm

与传统的凸优化方法相比,粒子群算法有哪些优点 与传统的凸优化方法相比,粒子群优化(PSO)算法具有以下优点: 全局搜索能力:PSO算法具有较强的全局搜索能力,能够在多个解空间中寻找最优解。由于粒子群在搜索过程中可以通过信息共享和合作,有助于避免陷入局部最优解。 适应性和自适应性:PSO算法具有适应性 ......

强化学习从基础到进阶-常见问题和面试必知必答[8]:近端策略优化(proximal policy optimization,PPO)算法

强化学习从基础到进阶-常见问题和面试必知必答[8]:近端策略优化(proximal policy optimization,PPO)算法 ......

MySQL 磁盘爆了,是 optimize table 的锅

2023-06-26 22:17左右,收到某系统的主库磁盘使用率告警。2023-06-26 23:02左右收到该系统的从库磁盘使用率告警。 收到告警后,登录数据库查看各表的磁盘使用。 经分析发现DB存在一个当日的备份表t_eap_sys_navigation_log_bak_20230626 ,且在 ......
磁盘 optimize MySQL table

Optimizing Disk I/O tmp_table_size max_heap_table_size 磁盘使用率

RDS MySQL临时文件导致实例磁盘空间满且出现“锁定中”状态 https://help.aliyun.com/document_detail/101763.html RDS MySQL临时文件导致实例磁盘空间满且出现“锁定中”状态 更新时间:2023-05-26 11:22 产品详情 相关技术圈 ......