Skip to content

Commit

Permalink
sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Jul 2, 2024
1 parent e125201 commit ea586fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 1 addition & 3 deletions scoring/performance_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
the dictionary of submissions.
"""
import itertools
import logging
import operator
import os
import re
Expand All @@ -36,9 +37,6 @@
import numpy as np
import pandas as pd
from tabulate import tabulate
import re

import logging

from algorithmic_efficiency.workloads.workloads import get_base_workload_name
import algorithmic_efficiency.workloads.workloads as workloads_registry
Expand Down
7 changes: 3 additions & 4 deletions scoring/score_submissions.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,19 @@
--compute_performance_profiles
"""

import json
import operator
import os
import pickle

from absl import app
from absl import flags
from absl import logging
import numpy as np
import pandas as pd
import performance_profile
import scoring_utils
from tabulate import tabulate
import json
import pickle

import performance_profile

flags.DEFINE_string(
'submission_directory',
Expand Down

0 comments on commit ea586fe

Please sign in to comment.