Spaces:
Sleeping
Sleeping
Test setting a specific background color
Browse files
app.py
CHANGED
|
@@ -7,6 +7,16 @@ api_key = os.getenv("HF_API_KEY")
|
|
| 7 |
client = InferenceClient(api_key=api_key)
|
| 8 |
dataset = load_dataset("andreska/adregadocs", split="test")
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
def read_dataset(dataset):
|
| 11 |
text = []
|
| 12 |
for item in dataset:
|
|
|
|
| 7 |
client = InferenceClient(api_key=api_key)
|
| 8 |
dataset = load_dataset("andreska/adregadocs", split="test")
|
| 9 |
|
| 10 |
+
st.markdown(
|
| 11 |
+
"""
|
| 12 |
+
<style>
|
| 13 |
+
.main {
|
| 14 |
+
background-color: yellow;
|
| 15 |
+
}
|
| 16 |
+
</style>
|
| 17 |
+
""",
|
| 18 |
+
unsafe_allow_html=True )
|
| 19 |
+
|
| 20 |
def read_dataset(dataset):
|
| 21 |
text = []
|
| 22 |
for item in dataset:
|