Skip to content

Commit

Permalink
docs: readme more language (#724)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeyi-Lin authored Oct 23, 2024
1 parent d53f219 commit 5465817
Show file tree
Hide file tree
Showing 4 changed files with 976 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
[![wechat][wechat-shield]][wechat-shield-link]
[![colab][colab-shield]][colab-shield-link]

中文 / [English](README_EN.md)
中文 / [English](README_EN.md) / [日本語](README_JP.md) / [Русский](README_RU.md)

👋 加入我们的[微信群](https://geektechstudio.feishu.cn/wiki/NIZ9wp5LRiSqQykizbGcVzUKnic)

Expand Down Expand Up @@ -212,7 +212,7 @@ class LitAutoEncoder(pl.LightningModule):
z = self.encoder(x)
x_hat = self.decoder(z)
loss = nn.functional.mse_loss(x_hat, x)
# Logging to TensorBoard (if installed) by default
# Logging to SwanLab (if installed) by default
self.log("train_loss", loss)
return loss

Expand All @@ -224,7 +224,7 @@ class LitAutoEncoder(pl.LightningModule):
z = self.encoder(x)
x_hat = self.decoder(z)
loss = nn.functional.mse_loss(x_hat, x)
# Logging to TensorBoard (if installed) by default
# Logging to SwanLab (if installed) by default
self.log("test_loss", loss)
return loss

Expand Down
6 changes: 3 additions & 3 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
[![wechat][wechat-shield]][wechat-shield-link]
[![colab][colab-shield]][colab-shield-link]

[中文](README.md) / English
[中文](README.md) / English / [日本語](README_JP.md) / [Русский](README_RU.md)

</div>

Expand Down Expand Up @@ -223,7 +223,7 @@ class LitAutoEncoder(pl.LightningModule):
z = self.encoder(x)
x_hat = self.decoder(z)
loss = nn.functional.mse_loss(x_hat, x)
# Logging to TensorBoard (if installed) by default
# Logging to SwanLab (if installed) by default
self.log("train_loss", loss)
return loss

Expand All @@ -235,7 +235,7 @@ class LitAutoEncoder(pl.LightningModule):
z = self.encoder(x)
x_hat = self.decoder(z)
loss = nn.functional.mse_loss(x_hat, x)
# Logging to TensorBoard (if installed) by default
# Logging to SwanLab (if installed) by default
self.log("test_loss", loss)
return loss

Expand Down
Loading

0 comments on commit 5465817

Please sign in to comment.