MightyCrane commited on
Commit
ac3c070
·
verified ·
1 Parent(s): f002a56

给我画一个关于leggedgym的结构图 - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +167 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Isaacgym
3
- emoji: 🏆
4
- colorFrom: blue
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: isaacgym
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,167 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>LeggedGym Structure Diagram</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .connector {
11
+ position: relative;
12
+ }
13
+ .connector::after {
14
+ content: '';
15
+ position: absolute;
16
+ top: 100%;
17
+ left: 50%;
18
+ width: 2px;
19
+ height: 20px;
20
+ background-color: #4b5563;
21
+ transform: translateX(-50%);
22
+ }
23
+ .horizontal-connector {
24
+ position: relative;
25
+ }
26
+ .horizontal-connector::after {
27
+ content: '';
28
+ position: absolute;
29
+ top: 50%;
30
+ left: 100%;
31
+ width: 20px;
32
+ height: 2px;
33
+ background-color: #4b5563;
34
+ }
35
+ @media (max-width: 768px) {
36
+ .mobile-stack {
37
+ flex-direction: column;
38
+ }
39
+ .mobile-stack .horizontal-connector::after {
40
+ width: 0;
41
+ height: 20px;
42
+ top: 100%;
43
+ left: 50%;
44
+ transform: translateX(-50%);
45
+ }
46
+ }
47
+ </style>
48
+ </head>
49
+ <body class="bg-gray-50 min-h-screen py-8 px-4">
50
+ <div class="max-w-6xl mx-auto">
51
+ <h1 class="text-3xl font-bold text-center text-gray-800 mb-2">
52
+ <i class="fas fa-robot mr-2 text-blue-500"></i>LeggedGym Architecture
53
+ </h1>
54
+ <p class="text-center text-gray-600 mb-8">A modular framework for legged robot learning</p>
55
+
56
+ <div class="bg-white rounded-xl shadow-lg p-6 mb-8">
57
+ <!-- Main Structure -->
58
+ <div class="flex flex-col items-center">
59
+ <!-- Top Level -->
60
+ <div class="bg-blue-600 text-white px-6 py-3 rounded-lg shadow-md text-center mb-6 connector">
61
+ <h2 class="font-bold text-xl">LeggedGym Core</h2>
62
+ <p class="text-sm opacity-80">Main framework for legged robot training</p>
63
+ </div>
64
+
65
+ <!-- Second Level -->
66
+ <div class="flex mobile-stack justify-center gap-8 mb-6">
67
+ <!-- Simulation Module -->
68
+ <div class="flex flex-col items-center">
69
+ <div class="bg-purple-500 text-white px-5 py-2 rounded-lg shadow-sm text-center mb-6 connector">
70
+ <h3 class="font-semibold"><i class="fas fa-cube mr-1"></i> Simulation</h3>
71
+ <p class="text-xs opacity-80">Physics engine integration</p>
72
+ </div>
73
+
74
+ <!-- Simulation Children -->
75
+ <div class="flex mobile-stack gap-4">
76
+ <div class="bg-purple-300 px-4 py-2 rounded text-center text-sm horizontal-connector">
77
+ <i class="fas fa-cogs mr-1"></i> Isaac Gym
78
+ </div>
79
+ <div class="bg-purple-300 px-4 py-2 rounded text-center text-sm">
80
+ <i class="fas fa-project-diagram mr-1"></i> PyBullet
81
+ </div>
82
+ </div>
83
+ </div>
84
+
85
+ <!-- Learning Module -->
86
+ <div class="flex flex-col items-center">
87
+ <div class="bg-green-500 text-white px-5 py-2 rounded-lg shadow-sm text-center mb-6 connector">
88
+ <h3 class="font-semibold"><i class="fas fa-brain mr-1"></i> Learning</h3>
89
+ <p class="text-xs opacity-80">RL algorithms & policies</p>
90
+ </div>
91
+
92
+ <!-- Learning Children -->
93
+ <div class="flex mobile-stack gap-4">
94
+ <div class="bg-green-300 px-4 py-2 rounded text-center text-sm horizontal-connector">
95
+ <i class="fas fa-network-wired mr-1"></i> PPO
96
+ </div>
97
+ <div class="bg-green-300 px-4 py-2 rounded text-center text-sm horizontal-connector">
98
+ <i class="fas fa-random mr-1"></i> SAC
99
+ </div>
100
+ <div class="bg-green-300 px-4 py-2 rounded text-center text-sm">
101
+ <i class="fas fa-route mr-1"></i> AMP
102
+ </div>
103
+ </div>
104
+ </div>
105
+
106
+ <!-- Robot Interface -->
107
+ <div class="flex flex-col items-center">
108
+ <div class="bg-yellow-500 text-white px-5 py-2 rounded-lg shadow-sm text-center mb-6 connector">
109
+ <h3 class="font-semibold"><i class="fas fa-robot mr-1"></i> Robot Interface</h3>
110
+ <p class="text-xs opacity-80">Hardware abstraction</p>
111
+ </div>
112
+
113
+ <!-- Robot Children -->
114
+ <div class="flex mobile-stack gap-4">
115
+ <div class="bg-yellow-300 px-4 py-2 rounded text-center text-sm horizontal-connector">
116
+ <i class="fas fa-paw mr-1"></i> ANYmal
117
+ </div>
118
+ <div class="bg-yellow-300 px-4 py-2 rounded text-center text-sm">
119
+ <i class="fas fa-dog mr-1"></i> Unitree
120
+ </div>
121
+ </div>
122
+ </div>
123
+ </div>
124
+
125
+ <!-- Third Level -->
126
+ <div class="bg-blue-400 text-white px-6 py-3 rounded-lg shadow-md text-center">
127
+ <h2 class="font-bold"><i class="fas fa-tasks mr-1"></i> Applications</h2>
128
+ <div class="flex flex-wrap justify-center gap-3 mt-2">
129
+ <span class="bg-blue-200 text-blue-800 px-3 py-1 rounded-full text-xs">Locomotion</span>
130
+ <span class="bg-blue-200 text-blue-800 px-3 py-1 rounded-full text-xs">Manipulation</span>
131
+ <span class="bg-blue-200 text-blue-800 px-3 py-1 rounded-full text-xs">Navigation</span>
132
+ <span class="bg-blue-200 text-blue-800 px-3 py-1 rounded-full text-xs">Recovery</span>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ </div>
137
+
138
+ <div class="grid md:grid-cols-3 gap-6">
139
+ <div class="bg-white p-4 rounded-lg shadow">
140
+ <h3 class="font-semibold text-blue-600 mb-2"><i class="fas fa-cube mr-2"></i>Key Features</h3>
141
+ <ul class="text-sm text-gray-600 space-y-1">
142
+ <li><i class="fas fa-check-circle text-green-500 mr-1"></i> GPU-accelerated simulation</li>
143
+ <li><i class="fas fa-check-circle text-green-500 mr-1"></i> Modular architecture</li>
144
+ <li><i class="fas fa-check-circle text-green-500 mr-1"></i> Multi-robot support</li>
145
+ <li><i class="fas fa-check-circle text-green-500 mr-1"></i> Curriculum learning</li>
146
+ </ul>
147
+ </div>
148
+ <div class="bg-white p-4 rounded-lg shadow">
149
+ <h3 class="font-semibold text-purple-600 mb-2"><i class="fas fa-exchange-alt mr-2"></i>Data Flow</h3>
150
+ <div class="text-sm text-gray-600">
151
+ <p class="mb-1"><i class="fas fa-arrow-right text-purple-500 mr-1"></i> Observations → Policy</p>
152
+ <p class="mb-1"><i class="fas fa-arrow-right text-purple-500 mr-1"></i> Actions → Simulation</p>
153
+ <p><i class="fas fa-sync-alt text-purple-500 mr-1"></i> Reward calculation</p>
154
+ </div>
155
+ </div>
156
+ <div class="bg-white p-4 rounded-lg shadow">
157
+ <h3 class="font-semibold text-green-600 mb-2"><i class="fas fa-code-branch mr-2"></i>Extensions</h3>
158
+ <div class="text-sm text-gray-600">
159
+ <p><i class="fas fa-plus-circle text-green-500 mr-1"></i> Custom environments</p>
160
+ <p><i class="fas fa-plus-circle text-green-500 mr-1"></i> New robot models</p>
161
+ <p><i class="fas fa-plus-circle text-green-500 mr-1"></i> Alternative algorithms</p>
162
+ </div>
163
+ </div>
164
+ </div>
165
+ </div>
166
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=MightyCrane/isaacgym" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
167
+ </html>