1. ホーム
  2. Web制作
  3. HTML/Xhtml

html css3 伸縮しない 画像表示効果

2022-01-21 21:30:21

1. transform属性を使って、画像を引き伸ばさないように表示する、(パスの問題は必要に応じて修正する必要がある)。

htmlを使用します。

import torch
x = torch.randn((1,4),dtype=torch.float32,requires_grad=True)
y = x ** 2
z = y * 4
print(x)
print(y)
print(z)
loss1 = z.mean()
loss2 = z.sum()
print(loss1,loss2)
loss1.backward() # This code executes normally, but the middle variables are free after execution, so the next one has a problem
print(loss1,loss2)
loss2.backward() # This raises an error

CSSです。

1 # If you need to execute the backward twice, execute the first backward first, then the second backward
2 loss1.backward(retain_graph=True) # The argument here indicates that the intermediate arguments after the backward are retained.
3 loss2.backward() # After executing this, all intermediate variables will be released for the next loop
4 # If training network optimizer.step() # Update parameters


最終的な仕上がりは、上の画像の左側にある通りです。

2. タオバオのものを参考に、display:table-cellと文字サイズで中央寄せを制御する

htmlを使用しています。

The create_graph parameter is relatively simple, refer to the official definition at

cssを使用します。

True

効果は上の画像の左の部分と同じで、外側のdivが正方形である必要性が強調されています。
タオバオのものは、こんな感じです。

この記事は、html css3の画像の表示効果を引き伸ばさないについて紹介されています、より関連するhtml css3の画像の内容を引き伸ばさないは、スクリプトハウス前の記事を検索するか、次の関連記事を閲覧を続けて、あなたは将来的にもっとスクリプトハウスをサポートして願っています!.