Skip to content

Commit

Permalink
Fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pvk-developer committed Sep 12, 2024
1 parent 3002025 commit 73d1a78
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion DEVELOPMENT.rst
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ method. The times are specified in seconds and the memory in bytes.
@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {
'time': 1,
Expand Down
2 changes: 1 addition & 1 deletion rdt/performance/datasets/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ def get_subclasses(cls):
@staticmethod
@abstractmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
raise NotImplementedError()
12 changes: 6 additions & 6 deletions rdt/performance/datasets/boolean.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-5, 'memory': 400.0},
'transform': {'time': 1e-5, 'memory': 400.0},
Expand Down Expand Up @@ -63,7 +63,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-5, 'memory': 400.0},
'transform': {'time': 1e-5, 'memory': 1000.0},
Expand All @@ -90,7 +90,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-5, 'memory': 400.0},
'transform': {'time': 1e-5, 'memory': 400.0},
Expand Down Expand Up @@ -119,7 +119,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-5, 'memory': 400.0},
'transform': {'time': 1e-5, 'memory': 1000.0},
Expand All @@ -141,7 +141,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-5, 'memory': 400.0},
'transform': {'time': 1e-5, 'memory': 400.0},
Expand Down Expand Up @@ -169,7 +169,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-5, 'memory': 400.0},
'transform': {'time': 1e-5, 'memory': 1000.0},
Expand Down
28 changes: 14 additions & 14 deletions rdt/performance/datasets/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-05, 'memory': 400.0},
'transform': {'time': 5e-05, 'memory': 400.0},
Expand All @@ -47,7 +47,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-05, 'memory': 400.0},
'transform': {'time': 5e-05, 'memory': 1000.0},
Expand All @@ -69,7 +69,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-05, 'memory': 500.0},
'transform': {'time': 1e-05, 'memory': 500.0},
Expand All @@ -90,7 +90,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-05, 'memory': 400.0},
'transform': {'time': 1e-05, 'memory': 1000.0},
Expand Down Expand Up @@ -126,7 +126,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-05, 'memory': 400.0},
'transform': {'time': 1e-05, 'memory': 1000.0},
Expand Down Expand Up @@ -158,7 +158,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-05, 'memory': 400.0},
'transform': {'time': 1e-05, 'memory': 2000.0},
Expand All @@ -180,7 +180,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-05, 'memory': 400.0},
'transform': {'time': 3e-05, 'memory': 400.0},
Expand All @@ -201,7 +201,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-05, 'memory': 400.0},
'transform': {'time': 3e-05, 'memory': 400.0},
Expand All @@ -223,7 +223,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-05, 'memory': 400.0},
'transform': {'time': 4e-05, 'memory': 400.0},
Expand All @@ -244,7 +244,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 2e-05, 'memory': 400.0},
'transform': {'time': 3e-05, 'memory': 400.0},
Expand All @@ -265,7 +265,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 0.0004, 'memory': 2000.0},
'transform': {'time': 0.0004, 'memory': 500000.0},
Expand All @@ -286,7 +286,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 0.0004, 'memory': 1000.0},
'transform': {'time': 0.0004, 'memory': 1000000.0},
Expand All @@ -307,7 +307,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 0.002, 'memory': 2000.0},
'transform': {'time': 0.0004, 'memory': 500000.0},
Expand All @@ -328,7 +328,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 0.001, 'memory': 1000.0},
'transform': {'time': 0.0005, 'memory': 1000000.0},
Expand Down
12 changes: 6 additions & 6 deletions rdt/performance/datasets/datetime.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 5e-05, 'memory': 500.0},
'transform': {'time': 5e-05, 'memory': 350.0},
Expand All @@ -53,7 +53,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 5e-05, 'memory': 500.0},
'transform': {'time': 5e-05, 'memory': 350.0},
Expand All @@ -75,7 +75,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 5e-05, 'memory': 500.0},
'transform': {'time': 5e-05, 'memory': 1000.0},
Expand All @@ -99,7 +99,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 5e-05, 'memory': 500.0},
'transform': {'time': 5e-05, 'memory': 350.0},
Expand All @@ -126,7 +126,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 5e-05, 'memory': 500.0},
'transform': {'time': 5e-05, 'memory': 350.0},
Expand All @@ -153,7 +153,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 5e-05, 'memory': 500.0},
'transform': {'time': 5e-05, 'memory': 350.0},
Expand Down
4 changes: 2 additions & 2 deletions rdt/performance/datasets/id.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-05, 'memory': 500.0},
'transform': {'time': 1e-05, 'memory': 500.0},
Expand All @@ -46,7 +46,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-05, 'memory': 400.0},
'transform': {'time': 1e-05, 'memory': 1000.0},
Expand Down
20 changes: 10 additions & 10 deletions rdt/performance/datasets/numerical.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-03, 'memory': 2500.0},
'transform': {'time': 5e-05, 'memory': 400.0},
Expand All @@ -46,7 +46,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-03, 'memory': 2500.0},
'transform': {'time': 4e-05, 'memory': 400.0},
Expand All @@ -69,7 +69,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-03, 'memory': 400.0},
'transform': {'time': 1e-05, 'memory': 400.0},
Expand All @@ -90,7 +90,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-03, 'memory': 600.0},
'transform': {'time': 3e-05, 'memory': 400.0},
Expand All @@ -116,7 +116,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-03, 'memory': 2500.0},
'transform': {'time': 1e-05, 'memory': 2000.0},
Expand All @@ -142,7 +142,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-03, 'memory': 2500.0},
'transform': {'time': 3e-05, 'memory': 1000.0},
Expand All @@ -163,7 +163,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-03, 'memory': 2500.0},
'transform': {'time': 1e-05, 'memory': 400.0},
Expand All @@ -184,7 +184,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-03, 'memory': 2500.0},
'transform': {'time': 4e-05, 'memory': 400.0},
Expand All @@ -205,7 +205,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-03, 'memory': 2500.0},
'transform': {'time': 5e-05, 'memory': 400.0},
Expand All @@ -226,7 +226,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-03, 'memory': 2500.0},
'transform': {'time': 3e-05, 'memory': 400.0},
Expand Down
4 changes: 2 additions & 2 deletions rdt/performance/datasets/pii.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-05, 'memory': 500.0},
'transform': {'time': 1e-05, 'memory': 500.0},
Expand All @@ -46,7 +46,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-05, 'memory': 400.0},
'transform': {'time': 1e-05, 'memory': 1000.0},
Expand Down
4 changes: 2 additions & 2 deletions rdt/performance/datasets/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-05, 'memory': 500.0},
'transform': {'time': 1e-05, 'memory': 500.0},
Expand All @@ -46,7 +46,7 @@ def generate(num_rows):

@staticmethod
def get_performance_thresholds():
"""Return the expected threseholds."""
"""Return the expected thresholds."""
return {
'fit': {'time': 1e-05, 'memory': 400.0},
'transform': {'time': 1e-05, 'memory': 1000.0},
Expand Down

0 comments on commit 73d1a78

Please sign in to comment.