Update README.md
Browse files
README.md
CHANGED
|
@@ -21,22 +21,23 @@ tags:
|
|
| 21 |
<style>
|
| 22 |
.gallery {
|
| 23 |
display: flex;
|
| 24 |
-
flex-direction: row;
|
| 25 |
-
flex-wrap: wrap;
|
| 26 |
-
gap:
|
| 27 |
justify-content: center;
|
| 28 |
align-items: center;
|
| 29 |
width: 100%;
|
| 30 |
-
padding:
|
| 31 |
}
|
| 32 |
|
| 33 |
.gallery-item {
|
| 34 |
-
flex: 0 0
|
| 35 |
margin: 0;
|
|
|
|
| 36 |
}
|
| 37 |
|
| 38 |
.gallery img {
|
| 39 |
-
width:
|
| 40 |
cursor: pointer;
|
| 41 |
transition: transform 0.2s;
|
| 42 |
border-radius: 8px;
|
|
@@ -46,6 +47,25 @@ tags:
|
|
| 46 |
transform: scale(1.05);
|
| 47 |
}
|
| 48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
.modal {
|
| 50 |
display: none;
|
| 51 |
position: fixed;
|
|
@@ -77,9 +97,11 @@ tags:
|
|
| 77 |
<div class="gallery">
|
| 78 |
<div class="gallery-item">
|
| 79 |
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example.png" alt="Example Output 1" onclick="showImage(this.src)"/>
|
|
|
|
| 80 |
</div>
|
| 81 |
<div class="gallery-item">
|
| 82 |
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example2.png" alt="Example Output 2" onclick="showImage(this.src)"/>
|
|
|
|
| 83 |
</div>
|
| 84 |
<div class="gallery-item">
|
| 85 |
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example3.png" alt="Example Output 3" onclick="showImage(this.src)"/>
|
|
@@ -103,11 +125,6 @@ function showImage(src) {
|
|
| 103 |
}
|
| 104 |
</script>
|
| 105 |
|
| 106 |
-
Example prompt: `A digital illustration of a lich with long grey hair and beard, as a university professor wearing a formal suit and standing in front of a class, writing on a whiteboard. He holds a marker, writing complex equations or magical symbols on the whiteboard.`
|
| 107 |
-
|
| 108 |
-
Example prompt 2: `a Candid Photo of a real short grey alien peering around a corner while trying to hide from the viewer in a living room,real photography, fujifilm superia, full HD, taken on a Canon EOS R5 F1. 2 ISO100 35MM`
|
| 109 |
-
|
| 110 |
-
|
| 111 |
|
| 112 |
# Combined Proteus and Mobius datasets.
|
| 113 |
|
|
|
|
| 21 |
<style>
|
| 22 |
.gallery {
|
| 23 |
display: flex;
|
| 24 |
+
flex-direction: row;
|
| 25 |
+
flex-wrap: wrap;
|
| 26 |
+
gap: 12px;
|
| 27 |
justify-content: center;
|
| 28 |
align-items: center;
|
| 29 |
width: 100%;
|
| 30 |
+
padding: 12px;
|
| 31 |
}
|
| 32 |
|
| 33 |
.gallery-item {
|
| 34 |
+
flex: 0 0 340px;
|
| 35 |
margin: 0;
|
| 36 |
+
position: relative; /* Added for caption positioning */
|
| 37 |
}
|
| 38 |
|
| 39 |
.gallery img {
|
| 40 |
+
width: 340px;
|
| 41 |
cursor: pointer;
|
| 42 |
transition: transform 0.2s;
|
| 43 |
border-radius: 8px;
|
|
|
|
| 47 |
transform: scale(1.05);
|
| 48 |
}
|
| 49 |
|
| 50 |
+
.caption {
|
| 51 |
+
position: absolute;
|
| 52 |
+
bottom: 0;
|
| 53 |
+
left: 0;
|
| 54 |
+
right: 0;
|
| 55 |
+
background: rgba(0, 0, 0, 0.7);
|
| 56 |
+
color: white;
|
| 57 |
+
padding: 10px;
|
| 58 |
+
font-size: 12px;
|
| 59 |
+
border-bottom-left-radius: 8px;
|
| 60 |
+
border-bottom-right-radius: 8px;
|
| 61 |
+
opacity: 0.9;
|
| 62 |
+
transition: opacity 0.3s;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.gallery-item:hover .caption {
|
| 66 |
+
opacity: 1;
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
.modal {
|
| 70 |
display: none;
|
| 71 |
position: fixed;
|
|
|
|
| 97 |
<div class="gallery">
|
| 98 |
<div class="gallery-item">
|
| 99 |
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example.png" alt="Example Output 1" onclick="showImage(this.src)"/>
|
| 100 |
+
<div class="caption">A digital illustration of a lich with long grey hair and beard, as a university professor wearing a formal suit and standing in front of a class, writing on a whiteboard. He holds a marker, writing complex equations or magical symbols on the whiteboard.</div>
|
| 101 |
</div>
|
| 102 |
<div class="gallery-item">
|
| 103 |
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example2.png" alt="Example Output 2" onclick="showImage(this.src)"/>
|
| 104 |
+
<div class="caption">A Candid Photo of a real short grey alien peering around a corner while trying to hide from the viewer in a living room, real photography, fujifilm superia, full HD, taken on a Canon EOS R5 F1.2 ISO100 35MM</div>
|
| 105 |
</div>
|
| 106 |
<div class="gallery-item">
|
| 107 |
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example3.png" alt="Example Output 3" onclick="showImage(this.src)"/>
|
|
|
|
| 125 |
}
|
| 126 |
</script>
|
| 127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
|
| 129 |
# Combined Proteus and Mobius datasets.
|
| 130 |
|