fix save parameter && update title
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ from sklearn.linear_model import LogisticRegression
|
|
17 |
from huggingface_hub import hf_hub_download
|
18 |
|
19 |
|
20 |
-
def load_and_predict_with_classifier(x, model_path, output_path):
|
21 |
|
22 |
# Load the model parameters from the JSON file
|
23 |
with open(model_path, 'r') as f:
|
@@ -188,7 +188,7 @@ if __name__ == "__main__":
|
|
188 |
<span style="font-size:3em; font-weight:bold; color: black;">UCE 100M Demo 🦠</span>
|
189 |
</div>
|
190 |
<div style="text-align:center; margin-bottom:10px;">
|
191 |
-
<span style="font-size:1.5em; font-weight:bold; color: black;">Universal Cell Embeddings:
|
192 |
</div>
|
193 |
<div style="text-align:center; margin-bottom:20px;">
|
194 |
<a href="https://github.com/minwoosun/UCE">
|
|
|
17 |
from huggingface_hub import hf_hub_download
|
18 |
|
19 |
|
20 |
+
def load_and_predict_with_classifier(x, model_path, output_path, save):
|
21 |
|
22 |
# Load the model parameters from the JSON file
|
23 |
with open(model_path, 'r') as f:
|
|
|
188 |
<span style="font-size:3em; font-weight:bold; color: black;">UCE 100M Demo 🦠</span>
|
189 |
</div>
|
190 |
<div style="text-align:center; margin-bottom:10px;">
|
191 |
+
<span style="font-size:1.5em; font-weight:bold; color: black;">Universal Cell Embeddings: Zero-Shot Cell-Type Classification in Action!</span>
|
192 |
</div>
|
193 |
<div style="text-align:center; margin-bottom:20px;">
|
194 |
<a href="https://github.com/minwoosun/UCE">
|