英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

detach    音标拼音: [dɪt'ætʃ] [dit'ætʃ]
vt. 拆开,分开,分离

拆开,分开,分离

detach
分开; 分离

detach
拆离

detach
v 1: cause to become detached or separated; take off; "detach
the skin from the chicken before you eat it" [ant:
{attach}]
2: separate (a small unit) from a larger, especially for a
special assignment; "detach a regiment"
3: come to be detached; "His retina detached and he had to be
rushed into surgery" [synonym: {detach}, {come off}, {come away}]
[ant: {attach}]

Detach \De*tach"\, v. i.
To push asunder; to come off or separate from anything; to
disengage.
[1913 Webster]

[A vapor] detaching, fold by fold,
From those still heights. --Tennyson.
[1913 Webster]


Detach \De*tach"\, v. t. [imp. & p. p. {Detached}; p. pr. & vb.
n. {Detaching}.] [F. d['e]tacher (cf. It. distaccare,
staccare); pref. d['e] (L. dis) the root found also in E.
attach. See {Attach}, and cf. {Staccato}.]
1. To part; to separate or disunite; to disengage; -- the
opposite of attach; as, to detach the coats of a bulbous
root from each other; to detach a man from a leader or
from a party.
[1913 Webster]

2. To separate for a special object or use; -- used
especially in military language; as, to detach a ship from
a fleet, or a company from a regiment.

Syn: To separate; disunite; disengage; sever; disjoin;
withdraw; draw off. See {Detail}.
[1913 Webster]

113 Moby Thesaurus words for "detach":
abstract, accredit, assign, authorize, break up, call up, cast off,
charge, charter, commandeer, commission, commit, conscript,
consign, cut off, deactivate, debrief, delegate, demob, demobilize,
depute, deputize, detach for service, detail, devolute, devolve,
devolve upon, disaffiliate, disassemble, disband, discharge,
disconnect, disengage, disentangle, disintegrate, disjoin,
dismantle, dismember, dismiss, dismount, disorganize, disperse,
dissociate, dissolve, disunite, divorce, doff, draft, empower,
enlist, enroll, entrust, free, give in charge, go separate ways,
impress, induct, join, let go, levy, liberate, license, list,
loose, loosen, mission, mobilize, muster, muster in, muster out,
part, part company, post, press, raise, recruit, release, remove,
scatter, send out, separate, sever, sign on, sign up, split up,
summon, sunder, take apart, take off, transfer, unbar, unbind,
unbolt, unbuckle, unbutton, unchain, unclasp, uncouple, undo,
unfasten, unfetter, unglue, unlace, unlatch, unleash, unlock,
unloose, unloosen, unstick, unstrap, untie, warrant,
weigh anchor


请选择你想看的字典辞典:
单词字典翻译
detach查看 detach 在百度字典中的解释百度英翻中〔查看〕
detach查看 detach 在Google字典中的解释Google英翻中〔查看〕
detach查看 detach 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • pytorch中. detach ()作用 - 知乎
    在 PyTorch 中, detach() 方法用于返回一个新的 Tensor,这个 Tensor 和原来的 Tensor 共享相同的内存空间,但是不会被 计算图 所追踪,也就是说它不会参与 反向传播,不会影响到原有的计算图,这使得它成为处理中间结果的一种有效方式,通常在以下两种情况下使用:
  • pytorch的两个函数 . detach () . detach_ () 的作用和区别_detach python-CSDN博客
    前言: 当我们再训练网络的时候可能希望保持一部分的网络参数不变,只对其中一部分的参数进行调整;或者值训练部分分支网络,并不让其梯度对主网络的梯度造成影响,这时候我们就需要使用detach ()函数来切断一些分支的反向传播 一、tensor detach ()
  • pytorch的两个函数 . detach () . detach_ () 的作用和区别 - 咖啡陪你 - 博客园
    总结:其实detach ()和detach_ ()很像,两个的区别就是detach_ ()是对本身的更改,detach ()则是生成了一个新的tensor 比如x -> m -> y中如果对m进行detach (),后面如果反悔想还是对原来的计算图进行操作还是可以的
  • PyTorch中的tensor. detach ()方法深度解析 - 姚伟斌
    什么是tensor detach ()? tensor detach() 是PyTorch中一个非常有用的方法,它主要用于从计算图中分离出张量。 但是,它的作用远不止于此。 让我们一步步来了解它。 基本定义 tensor detach() 返回一个新的张量,与原始张量共享存储空间,但不会参与梯度计算。
  • PyTorch中的detach ()函数:剪枝计算图与排除不重要张量
    pytorch detch函数 在 PyTorch 中, detach() 函数是一个非常重要的方法,用于从计算图中分离出一个张量,并停止其梯度的传递。 这对于避免不必要的计算和 存储 开销,以及在反向传播过程中避免计算梯度非常有用。 下面我们将详细介绍PyTorch的 detach() 函数及其用途。
  • torch. Tensor. detach — PyTorch 2. 10 文档 - PyTorch 文档
    torch Tensor detach # Tensor detach() # 返回一个从当前图分离的新张量。 结果将永远不需要梯度。 此方法还会影响前向模式 AD 梯度,结果将永远不会具有前向模式 AD 梯度。
  • PyTorch中detach () 函数详解 - CSDN博客
    detach() 是一个张量方法,用于 从当前计算图中分离一个张量。 具体来说: 调用 detach() 后,新生成的张量将与原计算图断开联系。 分离后的张量仍然保留其值,但不再参与梯度计算。
  • Pytorch中. detach()与. data的用法 - 知乎
    这里是官方文档对detach的定义 实际上,detach ()就是返回一个新的tensor,并且这个tensor是从当前的计算图中分离出来的。 但是返回的tensor和原来的tensor是共享内存空间的。
  • PyTorch深度学习:理解detach ()函数
    在PyTorch中,detach ()函数是一种非常重要的函数,用于在计算图中分离某个张量(Tensor)的计算图,使其成为一个独立的计算图,同时保留其值和梯度。 这种分离张量的操作可以有效地减少内存占用,加速计算速度,同时可以避免一些不必要的计算。
  • pytorch . detach () . detach_ () 和 . data用于切断反向传播的实现
    PyTorch中detach ()、detach_ ()和 data的区别详解,教你如何正确切断反向传播。 detach ()创建新变量切断梯度,detach_ ()原地修改变量属性, data直接访问张量数据但存在风险。 通过代码示例演示三种方法在神经网络训练中的应用场景和注意事项,帮助开发者避免常见





中文字典-英文字典  2005-2009