TemryL commited on
Commit
d2750fc
·
1 Parent(s): b5a57e1

update env

Browse files
Files changed (2) hide show
  1. src/about.py +1 -4
  2. src/envs.py +3 -3
src/about.py CHANGED
@@ -36,14 +36,11 @@ class Tasks(Enum):
36
  task21 = Task("osteoarthritis", "Osteoarthritis", "auprc", "AUPRC")
37
  task22 = Task("pneumonia", "Pneumonia", "auprc", "AUPRC")
38
  task23 = Task("stroke", "Stroke", "auprc", "AUPRC")
39
-
40
- NUM_FEWSHOT = 0 # Change with your few shot
41
  # ---------------------------------------------------
42
 
43
 
44
-
45
  # Your leaderboard name
46
- TITLE = """<h1 align="center" id="space-title">OpenHeLM Leaderboard</h1>"""
47
 
48
  # What does your leaderboard evaluate?
49
  INTRODUCTION_TEXT = """
 
36
  task21 = Task("osteoarthritis", "Osteoarthritis", "auprc", "AUPRC")
37
  task22 = Task("pneumonia", "Pneumonia", "auprc", "AUPRC")
38
  task23 = Task("stroke", "Stroke", "auprc", "AUPRC")
 
 
39
  # ---------------------------------------------------
40
 
41
 
 
42
  # Your leaderboard name
43
+ TITLE = """<h1 align="center" id="space-title">LLM Disease Risk Prediction Leaderboard</h1>"""
44
 
45
  # What does your leaderboard evaluate?
46
  INTRODUCTION_TEXT = """
src/envs.py CHANGED
@@ -9,9 +9,9 @@ HF_TOKEN = os.environ.get("HF_TOKEN") # A read/write token for your org
9
  OWNER = "TemryL" # Change to your org - don't forget to create a results and request dataset, with the correct format!
10
  # ----------------------------------
11
 
12
- REPO_ID = f"{OWNER}/OpenHeLM-leaderboard"
13
- QUEUE_REPO = f"{OWNER}/OpenHeLM-requests"
14
- RESULTS_REPO = f"{OWNER}/OpenHeLM-results"
15
 
16
  # If you setup a cache later, just change HF_HOME
17
  CACHE_PATH=os.getenv("HF_HOME", ".")
 
9
  OWNER = "TemryL" # Change to your org - don't forget to create a results and request dataset, with the correct format!
10
  # ----------------------------------
11
 
12
+ REPO_ID = f"{OWNER}/LLM-Disease-Risk-Leaderboard"
13
+ QUEUE_REPO = f"{OWNER}/LLM-Disease-Risk-Requests"
14
+ RESULTS_REPO = f"{OWNER}/LLM-Disease-Risk-Results"
15
 
16
  # If you setup a cache later, just change HF_HOME
17
  CACHE_PATH=os.getenv("HF_HOME", ".")