Skip to content

Commit ba0f6ba

Browse files
committed
Deactivate matmul example competition
1 parent 0a838c7 commit ba0f6ba

File tree

10 files changed

+15
-146
lines changed

10 files changed

+15
-146
lines changed

neurons/_validator/competitions/1/README.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

neurons/_validator/competitions/1/baseline_model.py

Lines changed: 0 additions & 18 deletions
This file was deleted.

neurons/_validator/competitions/1/competition_config.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

neurons/_validator/competitions/1/example_compile.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

neurons/_validator/competitions/1/export_onnx.py

Lines changed: 0 additions & 14 deletions
This file was deleted.
Binary file not shown.
-2.66 KB
Binary file not shown.

neurons/_validator/competitions/1/test_input.py

Lines changed: 0 additions & 27 deletions
This file was deleted.

neurons/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class Roles:
7676
# Era period for proof of weights (mortality of the pow log)
7777
PROOF_OF_WEIGHTS_LIFESPAN = 2
7878
# Active competition
79-
ACTIVE_COMPETITION = 1
79+
ACTIVE_COMPETITION = 0
8080
# Frequency in terms of seconds at which the competition is synced and evaluated
8181
COMPETITION_SYNC_INTERVAL = 60 * 60 * 24
8282
# Maximum signature lifespan for WebSocket requests

neurons/generate_test_input.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from deployment_layer.model_50818a54b31b3e0fe3306a7fb7826156fc2c42c9d64c6ba106ba135fbe7b7b19.input import (
2+
CircuitInput,
3+
)
4+
from _validator.models.request_type import RequestType
5+
6+
7+
def main():
8+
input_instance = CircuitInput(RequestType.BENCHMARK)
9+
generated_data = input_instance.generate()
10+
print(f"Generated list items: {generated_data['list_items']}")
11+
12+
13+
if __name__ == "__main__":
14+
main()

0 commit comments

Comments
 (0)