home.zh.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {% extends "base.html" %}
  2. <!-- Render landing page under tabs -->
  3. {% block tabs %}
  4. {{ super() }}
  5. <!-- Additional styles for landing page -->
  6. <style>
  7. /* Application header should be static for the landing page */
  8. .md-header {
  9. position: initial;
  10. }
  11. /* Remove spacing, as we cannot hide it completely */
  12. .md-main__inner {
  13. margin: 0;
  14. }
  15. /* Hide main content for now */
  16. .md-content {
  17. display: none;
  18. }
  19. /* Hide table of contents */
  20. @media screen and (min-width: 60em) {
  21. .md-sidebar--secondary {
  22. display: none;
  23. }
  24. }
  25. /* Hide navigation */
  26. @media screen and (min-width: 76.25em) {
  27. .md-sidebar--primary {
  28. display: none;
  29. }
  30. }
  31. </style>
  32. <!-- landing page for landing page -->
  33. <section class="tx-container">
  34. <div class="md-grid md-typeset">
  35. <div class="tx-landing">
  36. <!-- landing image -->
  37. <div class="tx-landing__image">
  38. <script src="../mkdocs/js/lottie-player.js"></script>
  39. <lottie-player id="lottieAnimation" background="transparent"
  40. style="max-width: 100%; height: auto;"
  41. speed="1" loop autoplay>
  42. </lottie-player>
  43. <script>
  44. let animation = document.getElementById("lottieAnimation");
  45. animation.load("../mkdocs/assets/animations/ml.json");
  46. </script>
  47. </div>
  48. <!-- landing content -->
  49. <div class="tx-landing__content">
  50. <h1>{{page.title}}</h1>
  51. <p>FATE Flow 基于
  52. <ul>
  53. <li>共享状态调度架构</li>
  54. <li>多方安全通信</li>
  55. </ul>
  56. </p>
  57. <p>实现了端到端的联邦学习作业调度生产级服务,支持
  58. <ul>
  59. <li>数据接入</li>
  60. <li>任务组件注册中心</li>
  61. <li>联合作业&任务调度</li>
  62. <li>多方资源协调</li>
  63. <li>数据流动追踪</li>
  64. <li>作业实时监测</li>
  65. <li>联合模型注册中心</li>
  66. <li>多方合作权限管理</li>
  67. </ul>
  68. </p>
  69. <a href="/tutorial" title="Tutorial" class="md-button"> Learn More</a>
  70. <a href="https://github.com/FederatedAI/FATE-Flow" title="GitHub" class="md-button">GitHub</a>
  71. </div>
  72. </div>
  73. </div>
  74. </section>
  75. {% endblock %}
  76. <!-- Content -->
  77. {% block content %}{% endblock %}
  78. <!-- Application footer -->
  79. {% block footer %}{% endblock %}