-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (62 loc) · 2.78 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<style>
div.gallery video {
width: 80%;
max-width: 800px;
height: auto;
margin-top: 30px;
margin-bottom: 30px;
margin-left: auto;
margin-right: auto;
display:block;
}
div.text {
width: 80%;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<h1 style="text-align:center">Physarum Latent Walk Examples</h1>
<div class="gallery">
<video src="examples/video_duckwheat_3_et_noise_seed455700_epoch035_85c0b5c8fd28fa90aa6fd5655f07ab75_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="gallery">
<video src="examples/video_dunes_7_et_linear_seed603519_epoch035_643c36512c928a24b9c724c3d84068c9_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="gallery">
<video src="examples/video_giraffe_6_et_linear_seed292382_epoch035_793982556a8558844521c285d116c1d0_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="gallery">
<video src="examples/video_labyrinth_5_et_noise_seed952352_epoch015_e6addb14d0e40ff485fdab276d6682af_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="gallery">
<video src="examples/video_plant_cells_6_et_linear_seed703594_epoch035_bd41d6d18cf9324c4a9e2b4ad2beb27e_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="gallery">
<video src="examples/video_runes_6_et_noise_seed312575_epoch035_b3e25ec407470890e425d97dd5923042_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="gallery">
<video src="examples/video_sponge_4_et_linear_seed885009_epoch035_feee47fda0e74ff5fa416c61642dbbb8_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="gallery">
<video src="examples/video_thunder_6_et_noise_seed865413_epoch035_e59aad66fced36aae55fe64911d2eedd_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="gallery">
<video src="examples/video_fire_5_et_noise_seed412118_epoch035_847b44c16a1eb2e9fc977625fe6ee6dd_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="gallery">
<video src="examples/video_universe_5_et_noise_seed661313_epoch005_bd9e14c8aae7f8aa36aa2d6e668d9395_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="gallery">
<video src="examples/video_vines_7_et_linear_seed292555_epoch035_c0802cbf0e4164a182f5f1a9ee8b878c_512.mp4" width="600" height="600" autoplay loop>
</div>
<div class="text">
<p> These are Example of using <a href="https://github.com/piebro/physarum-latent-walk">physarum-latent-walk</a> together with the <a href="https://www.kaggle.com/pietbroemmel/physarum-latent-walk">physarum-latent-walk-dataset</a>. The Original slime mold simulation is from <a href="https://github.com/fogleman/physarum">fogleman/physarum</a></p>
</div>
</body>
</html>