Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,15 @@ os.environ["KERAS_BACKEND"] = "tensorflow"
|
|
| 4 |
import keras
|
| 5 |
import keras_nlp
|
| 6 |
|
| 7 |
-
css = "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
|
| 10 |
gemma_lm = keras_nlp.models.CausalLM.from_preset("hf://sultan-hassan/CosmoGemma_2b_en")
|
|
|
|
| 4 |
import keras
|
| 5 |
import keras_nlp
|
| 6 |
|
| 7 |
+
css = """
|
| 8 |
+
body {
|
| 9 |
+
background-image: url('https://stsci-opo.org/STScI-01J6D97YGSQACWK990TH56K6AF.png');
|
| 10 |
+
background-size: cover;
|
| 11 |
+
background-repeat: no-repeat;
|
| 12 |
+
background-position: center;
|
| 13 |
+
opacity: 0.1;
|
| 14 |
+
}
|
| 15 |
+
"""
|
| 16 |
|
| 17 |
|
| 18 |
gemma_lm = keras_nlp.models.CausalLM.from_preset("hf://sultan-hassan/CosmoGemma_2b_en")
|