Skip to content

Commit

Permalink
second term project leaderboard update
Browse files Browse the repository at this point in the history
  • Loading branch information
MarekToma committed Feb 22, 2024
1 parent 73ea071 commit cbb04bf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
10 changes: 5 additions & 5 deletions pv211_utils/arqmath/leaderboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@

class ArqmathLeaderboard(GoogleSpreadsheetLeaderboardBase):
def get_competition_start(self) -> datetime.date:
return datetime.date(2023, 3, 22)
return datetime.date(2024, 3, 27)

def get_competition_end(self) -> datetime.date:
return datetime.date(2023, 5, 1)
return datetime.date(2024, 5, 7)

def _get_key_path(self) -> str:
key_path = pkg_resources.resource_filename('pv211_utils', 'data/pv211-leaderboard-b8e892e3e8bb.json')
return key_path

def _get_spreadsheet_key(self) -> str:
spreadsheet_key = '1zGUntkeUmE8oFKgM9WdFbN14IPdGJHDbKWXoiec_lmM'
spreadsheet_key = '1ohEA6tcmKKKng0Tx787p112fTWDNgF8O5JMvSF-v0ds'
return spreadsheet_key

def get_public_url(self) -> Optional[str]:
return (
'https://docs.google.com/spreadsheets/d/e/2PACX'
'-1vT9GibzjkZJxdFNdgr666TLDIHD46HfTYSEPeKUN-ErxRIN2HGjUtKyfvf6Xg3MZ6cW4p9qcSmR'
'-4Rk/pubhtml?gid=0&single=true'
'-1vQyaxVj3qnJgeSyOnAtUb7VcielyLnw9MZTNC9vTVZm22'
'aH4TqV-aIx2TjDZ9fXSeKveUJA8cVB23XR/pubhtml'
)
11 changes: 6 additions & 5 deletions pv211_utils/beir/leaderboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,22 @@

class BeirLeaderboard(GoogleSpreadsheetLeaderboardBase):
def get_competition_start(self) -> datetime.date:
return datetime.date(2023, 3, 22)
return datetime.date(2024, 3, 27)

def get_competition_end(self) -> datetime.date:
return datetime.date(2023, 5, 1)
return datetime.date(2024, 5, 7)

def _get_key_path(self) -> str:
key_path = pkg_resources.resource_filename('pv211_utils', 'data/pv211-leaderboard-b8e892e3e8bb.json')
return key_path

def _get_spreadsheet_key(self) -> str:
spreadsheet_key = '1YC0A9-XCd7p18rE37RI8edTOGeSlsAtQWnaPiS8GPOw'
spreadsheet_key = '1z59ROLx-0AS-Wd6ppmOrXKmx7gZG2SM4KdFgfiwoFPI'
return spreadsheet_key

def get_public_url(self) -> Optional[str]:
return (
'https://docs.google.com/spreadsheets/d/e/2PACX-1vSLYKoYcsTgyTp2T'
'-pNgW2heZrwvmBVKAgWAAG_vELv8kgnxHffnJ-IKt5huAacvO7r-zKWOgSiqWFU/pubhtml?gid=0&single=true'
'https://docs.google.com/spreadsheets/d/e/2PACX'
'-1vRc5VbtwD2YUdfTlICSlYwcS8ZjNqkHVJrKgQ2pVBNmUi'
'Li9lUkTrYde9Mu6fxJTa07LN4VZ2oTs5jZ/pubhtml'
)

0 comments on commit cbb04bf

Please sign in to comment.