File size: 4,762 Bytes
e60144f 2899db8 e60144f 2899db8 e60144f 2899db8 49787e7 2899db8 2d589ae ed7f3c3 2899db8 fcac94f 2899db8 fcac94f 2899db8 ed7f3c3 2899db8 e60144f 2899db8 e21192d 7dbc6c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>LeRobot Worldwide Hackathon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Tailwind CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- React & ReactDOM CDN -->
<script crossorigin src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
</head>
<body class="bg-white">
<div id="root"></div>
<script type="text/javascript">
const {
useEffect,
useState
} = React;
function App() {
const [videos, setVideos] = useState([]);
const [teamDatasets, setTeamDatasets] = useState({});
useEffect(() => {
fetch("https://huggingface.co/api/datasets/LeRobot-worldwide-hackathon/submissions/tree/main")
.then(res => res.json())
.then(data => {
const videoFiles = data
.filter(file => file.path.endsWith(".mp4"))
.map(file => {
const url =
`https://huggingface.co/datasets/LeRobot-worldwide-hackathon/submissions/resolve/main/${encodeURIComponent(file.path)}`;
const match = file.path.match(/(?:team|group)[-_ ]?(\d+)/i);
const team = match ? match[1] : null;
const label = team ? `Team ${team}` : "Unknown Team";
return {
url,
label,
team
};
});
setVideos(videoFiles);
});
fetch("https://huggingface.co/api/datasets?author=maringetxway")
.then(res => res.json())
.then(data => {
const map = {};
data.forEach(entry => {
const match = entry.id.match(/maringetxway\/team[_-]?(\d+)/i);
if (match) {
const team = match[1];
if (!map[team]) map[team] = [];
map[team].push(`https://huggingface.co/spaces/lerobot/visualize_dataset?dataset=${entry.id}`);
}
});
setTeamDatasets(map);
});
}, []);
return React.createElement("div", {
className: "min-h-screen p-6",
style: {
backgroundColor: "#3A3B3C" // Dark gray color
}
},
React.createElement("style", {
dangerouslySetInnerHTML: {
__html: `
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
`
}
}),
React.createElement("h1", {
className: "text-3xl font-bold mb-2 text-center text-white" // Added text-white
},
"LeRobot Worldwide Hackathon"
),
React.createElement("p", {
className: "text-white text-center mb-6"
},
"π Worldwide", React.createElement("br", null),
"π
June 2025, 14 at 09:00 AM (UTC+2) β June 2025, 15 at 06:00 PM (UTC+2)"
),
React.createElement("div", {
className: "flex flex-wrap justify-center items-center gap-8 mb-10"
},
),
React.createElement("div", {
className: "columns-1 sm:columns-2 lg:columns-3 gap-4 space-y-4"
}, videos.map((video, i) =>
React.createElement("div", {
key: i,
className: "break-inside-avoid bg-white rounded-2xl shadow-md overflow-hidden"
},
React.createElement("video", {
src: video.url,
controls: true,
className: "w-full h-auto"
}),
React.createElement("div", {
className: "p-2 text-center text-sm font-medium text-white"
},
video.label,
video.team && teamDatasets[video.team] &&
React.createElement("div", {
className: "mt-1 space-y-1"
},
teamDatasets[video.team].map((url, j) =>
React.createElement("div", {
key: j
},
React.createElement("a", {
href: url,
className: "text-blue-500 underline",
target: "_blank"
}, `Dataset: ${url.split('=')[1]}`)
)
)
)
)
)
))
);
}
ReactDOM.createRoot(document.getElementById("root")).render(React.createElement(App));
</script>
</body>
</html>
|