Skip to content

Commit

Permalink
Chineese translation
Browse files Browse the repository at this point in the history
  • Loading branch information
vpj committed Aug 16, 2024
1 parent edf875a commit f3465ac
Show file tree
Hide file tree
Showing 17 changed files with 1,651 additions and 58 deletions.
8 changes: 4 additions & 4 deletions docs/zh/RWKV/configs.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<meta name="twitter:site" content="@labmlai"/>
<meta name="twitter:creator" content="@labmlai"/>

<meta property="og:url" content="https://nn.labml.ai/RWKV/configs.html"/>
<meta property="og:url" content="https://nn.labml.ai/rwkv/configs.html"/>
<meta property="og:title" content="configs.py"/>
<meta property="og:image" content="https://avatars1.githubusercontent.com/u/64068543?s=400&amp;v=4"/>
<meta property="og:site_name" content="configs.py"/>
Expand All @@ -23,7 +23,7 @@
<title>configs.py</title>
<link rel="shortcut icon" href="/icon.png"/>
<link rel="stylesheet" href="../pylit.css?v=1">
<link rel="canonical" href="https://nn.labml.ai/RWKV/configs.html"/>
<link rel="canonical" href="https://nn.labml.ai/rwkv/configs.html"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-zTROYFVGOfTw7JV7KUu8udsvW2fx4lWOsCEDqhBreBwlHI4ioVRtmIvEThzJHGET" crossorigin="anonymous">

<!-- Global site tag (gtag.js) - Google Analytics -->
Expand All @@ -47,7 +47,7 @@
<div class='docs'>
<p>
<a class="parent" href="/">home</a>
<a class="parent" href="index.html">RWKV</a>
<a class="parent" href="index.html">rwkv</a>
</p>
<p>
<a href="https://github.com/labmlai/annotated_deep_learning_paper_implementations" target="_blank">
Expand All @@ -60,7 +60,7 @@
style="max-width:100%;"/></a>
</p>
<p>
<a href="https://github.com/labmlai/annotated_deep_learning_paper_implementations/tree/master/labml_nn/RWKV/configs.py" target="_blank">
<a href="https://github.com/labmlai/annotated_deep_learning_paper_implementations/tree/master/labml_nn/rwkv/configs.py" target="_blank">
View code on Github</a>
</p>
</div>
Expand Down
14 changes: 7 additions & 7 deletions docs/zh/RWKV/experiment.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<meta name="twitter:site" content="@labmlai"/>
<meta name="twitter:creator" content="@labmlai"/>

<meta property="og:url" content="https://nn.labml.ai/RWKV/experiment.html"/>
<meta property="og:url" content="https://nn.labml.ai/rwkv/experiment.html"/>
<meta property="og:title" content="experiment.py"/>
<meta property="og:image" content="https://avatars1.githubusercontent.com/u/64068543?s=400&amp;v=4"/>
<meta property="og:site_name" content="experiment.py"/>
Expand All @@ -23,7 +23,7 @@
<title>experiment.py</title>
<link rel="shortcut icon" href="/icon.png"/>
<link rel="stylesheet" href="../pylit.css?v=1">
<link rel="canonical" href="https://nn.labml.ai/RWKV/experiment.html"/>
<link rel="canonical" href="https://nn.labml.ai/rwkv/experiment.html"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-zTROYFVGOfTw7JV7KUu8udsvW2fx4lWOsCEDqhBreBwlHI4ioVRtmIvEThzJHGET" crossorigin="anonymous">

<!-- Global site tag (gtag.js) - Google Analytics -->
Expand All @@ -47,7 +47,7 @@
<div class='docs'>
<p>
<a class="parent" href="/">home</a>
<a class="parent" href="index.html">RWKV</a>
<a class="parent" href="index.html">rwkv</a>
</p>
<p>
<a href="https://github.com/labmlai/annotated_deep_learning_paper_implementations" target="_blank">
Expand All @@ -60,7 +60,7 @@
style="max-width:100%;"/></a>
</p>
<p>
<a href="https://github.com/labmlai/annotated_deep_learning_paper_implementations/tree/master/labml_nn/RWKV/experiment.py" target="_blank">
<a href="https://github.com/labmlai/annotated_deep_learning_paper_implementations/tree/master/labml_nn/rwkv/experiment.py" target="_blank">
View code on Github</a>
</p>
</div>
Expand All @@ -78,10 +78,10 @@
<span class="lineno">3</span>
<span class="lineno">4</span><span class="kn">import</span> <span class="nn">torch</span>
<span class="lineno">5</span><span class="kn">import</span> <span class="nn">torch.nn</span> <span class="k">as</span> <span class="nn">nn</span>
<span class="lineno">6</span><span class="kn">from</span> <span class="nn">labml_nn.RWKV.configs</span> <span class="kn">import</span> <span class="n">RWKVConfigs</span>
<span class="lineno">6</span><span class="kn">from</span> <span class="nn">labml_nn.rwkv.configs</span> <span class="kn">import</span> <span class="n">RWKVConfigs</span>
<span class="lineno">7</span>
<span class="lineno">8</span><span class="kn">from</span> <span class="nn">labml_nn.RWKV</span> <span class="kn">import</span> <span class="n">RWKV</span>
<span class="lineno">9</span><span class="kn">from</span> <span class="nn">labml_nn.RWKV</span> <span class="kn">import</span> <span class="n">TimeMixing</span>
<span class="lineno">8</span><span class="kn">from</span> <span class="nn">labml_nn.rwkv</span> <span class="kn">import</span> <span class="n">RWKV</span>
<span class="lineno">9</span><span class="kn">from</span> <span class="nn">labml_nn.rwkv</span> <span class="kn">import</span> <span class="n">TimeMixing</span>
<span class="lineno">10</span><span class="kn">from</span> <span class="nn">labml</span> <span class="kn">import</span> <span class="n">experiment</span>
<span class="lineno">11</span><span class="kn">from</span> <span class="nn">labml.configs</span> <span class="kn">import</span> <span class="n">option</span>
<span class="lineno">12</span><span class="kn">from</span> <span class="nn">labml_nn.experiments.nlp_autoregression</span> <span class="kn">import</span> <span class="n">NLPAutoRegressionConfigs</span></pre></div>
Expand Down
8 changes: 4 additions & 4 deletions docs/zh/RWKV/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<meta name="twitter:site" content="@labmlai"/>
<meta name="twitter:creator" content="@labmlai"/>

<meta property="og:url" content="https://nn.labml.ai/RWKV/index.html"/>
<meta property="og:url" content="https://nn.labml.ai/rwkv/index.html"/>
<meta property="og:title" content="Receptance Weighted Key Value (RWKV)"/>
<meta property="og:image" content="https://avatars1.githubusercontent.com/u/64068543?s=400&amp;v=4"/>
<meta property="og:site_name" content="Receptance Weighted Key Value (RWKV)"/>
Expand All @@ -23,7 +23,7 @@
<title>Receptance Weighted Key Value (RWKV)</title>
<link rel="shortcut icon" href="/icon.png"/>
<link rel="stylesheet" href="../pylit.css?v=1">
<link rel="canonical" href="https://nn.labml.ai/RWKV/index.html"/>
<link rel="canonical" href="https://nn.labml.ai/rwkv/index.html"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-zTROYFVGOfTw7JV7KUu8udsvW2fx4lWOsCEDqhBreBwlHI4ioVRtmIvEThzJHGET" crossorigin="anonymous">

<!-- Global site tag (gtag.js) - Google Analytics -->
Expand All @@ -47,7 +47,7 @@
<div class='docs'>
<p>
<a class="parent" href="/">home</a>
<a class="parent" href="index.html">RWKV</a>
<a class="parent" href="index.html">rwkv</a>
</p>
<p>
<a href="https://github.com/labmlai/annotated_deep_learning_paper_implementations" target="_blank">
Expand All @@ -60,7 +60,7 @@
style="max-width:100%;"/></a>
</p>
<p>
<a href="https://github.com/labmlai/annotated_deep_learning_paper_implementations/tree/master/labml_nn/RWKV/__init__.py" target="_blank">
<a href="https://github.com/labmlai/annotated_deep_learning_paper_implementations/tree/master/labml_nn/rwkv/__init__.py" target="_blank">
View code on Github</a>
</p>
</div>
Expand Down
Loading

0 comments on commit f3465ac

Please sign in to comment.