rusticluftig commited on
Commit
93ec8ee
1 Parent(s): a2dcddd

Format competitions.py

Browse files
Files changed (1) hide show
  1. competitions.py +4 -7
competitions.py CHANGED
@@ -1,6 +1,3 @@
1
-
2
-
3
-
4
  from dataclasses import dataclass
5
  from typing import Dict
6
 
@@ -9,15 +6,15 @@ from typing import Dict
9
  class CompetitionDetails:
10
  # The display name of the competition.
11
  name: str
12
-
13
  # The HTML description of the competition.
14
  html_description: str
15
-
16
 
17
  # A map of competition IDs to HTML descriptions.
18
  COMPETITION_DETAILS: Dict[int, CompetitionDetails] = {
19
  1: CompetitionDetails(
20
  name="SN9_MODEL",
21
- html_description="""<b>Competition ID 1</b><br/>Produce the best fine-tuned model from a Subnet 9 pretrained model. Models are evaluated using synthetic prompt/response data from Subnet 18."""
22
  )
23
- }
 
 
 
 
1
  from dataclasses import dataclass
2
  from typing import Dict
3
 
 
6
  class CompetitionDetails:
7
  # The display name of the competition.
8
  name: str
9
+
10
  # The HTML description of the competition.
11
  html_description: str
12
+
13
 
14
  # A map of competition IDs to HTML descriptions.
15
  COMPETITION_DETAILS: Dict[int, CompetitionDetails] = {
16
  1: CompetitionDetails(
17
  name="SN9_MODEL",
18
+ html_description="""<b>Competition ID 1</b><br/>Produce the best fine-tuned model from a Subnet 9 pretrained model. Models are evaluated using synthetic prompt/response data from Subnet 18.""",
19
  )
20
+ }