update README
Browse files
README.md
CHANGED
|
@@ -10,30 +10,46 @@ tags:
|
|
| 10 |
|
| 11 |
# Terra
|
| 12 |
|
| 13 |
-
<div style="display: flex; overflow-x: auto; gap: 10px; scroll-behavior: smooth; padding: 10px; border: 1px solid #ddd;">
|
| 14 |
-
<video width="
|
| 15 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_1.mp4" type="video/mp4">
|
| 16 |
</video>
|
| 17 |
-
<video width="
|
| 18 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_2.mp4" type="video/mp4">
|
| 19 |
</video>
|
| 20 |
-
<video width="
|
| 21 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_3.mp4" type="video/mp4">
|
| 22 |
</video>
|
| 23 |
-
<video width="
|
| 24 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_4.mp4" type="video/mp4">
|
| 25 |
</video>
|
| 26 |
-
<video width="
|
| 27 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_5.mp4" type="video/mp4">
|
| 28 |
</video>
|
| 29 |
-
<video width="
|
| 30 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_6.mp4" type="video/mp4">
|
| 31 |
</video>
|
| 32 |
-
<video width="
|
| 33 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_7.mp4" type="video/mp4">
|
| 34 |
</video>
|
| 35 |
</div>
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
**Terra** is a world model designed for autonomous driving and serves as a baseline model in th [ACT-Bench](https://github.com/turingmotors/ACT-Bench) framework.
|
| 38 |
Terra generates video continuations based on short video clips of approximately three frames and trajectory instructions.
|
| 39 |
A key feature of Terra is its **high adherence to trajectory instructions**, enabling accurate and reliable action-conditioned video generation.
|
|
|
|
| 10 |
|
| 11 |
# Terra
|
| 12 |
|
| 13 |
+
<div id="scroll-container" style="display: flex; overflow-x: auto; gap: 10px; scroll-behavior: smooth; padding: 10px; border: 1px solid #ddd;">
|
| 14 |
+
<video width="512" controls>
|
| 15 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_1.mp4" type="video/mp4">
|
| 16 |
</video>
|
| 17 |
+
<video width="512" controls>
|
| 18 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_2.mp4" type="video/mp4">
|
| 19 |
</video>
|
| 20 |
+
<video width="512" controls>
|
| 21 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_3.mp4" type="video/mp4">
|
| 22 |
</video>
|
| 23 |
+
<video width="512" controls>
|
| 24 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_4.mp4" type="video/mp4">
|
| 25 |
</video>
|
| 26 |
+
<video width="512" controls>
|
| 27 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_5.mp4" type="video/mp4">
|
| 28 |
</video>
|
| 29 |
+
<video width="512" controls>
|
| 30 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_6.mp4" type="video/mp4">
|
| 31 |
</video>
|
| 32 |
+
<video width="512" controls>
|
| 33 |
<source src="https://huggingface.co/turing-motors/Terra/resolve/main/assets/videos/row_7.mp4" type="video/mp4">
|
| 34 |
</video>
|
| 35 |
</div>
|
| 36 |
|
| 37 |
+
<script>
|
| 38 |
+
const scrollContainer = document.getElementById('scroll-container');
|
| 39 |
+
let scrollSpeed = 1; // スクロール速度(調整可能)
|
| 40 |
+
|
| 41 |
+
function loopScroll() {
|
| 42 |
+
scrollContainer.scrollLeft += scrollSpeed;
|
| 43 |
+
if (scrollContainer.scrollLeft >= scrollContainer.scrollWidth / 2) {
|
| 44 |
+
// スクロール位置をリセット
|
| 45 |
+
scrollContainer.scrollLeft = 0;
|
| 46 |
+
}
|
| 47 |
+
requestAnimationFrame(loopScroll);
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
loopScroll();
|
| 51 |
+
</script>
|
| 52 |
+
|
| 53 |
**Terra** is a world model designed for autonomous driving and serves as a baseline model in th [ACT-Bench](https://github.com/turingmotors/ACT-Bench) framework.
|
| 54 |
Terra generates video continuations based on short video clips of approximately three frames and trajectory instructions.
|
| 55 |
A key feature of Terra is its **high adherence to trajectory instructions**, enabling accurate and reliable action-conditioned video generation.
|