Skip to content

Commit

Permalink
Remove the CSS model from git
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle1668 committed Feb 4, 2023
1 parent 79be103 commit ad0ef01
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.csv
*.npy
elk/models/*
elk/trained/*
nohup.out
.idea
*.pkl
Expand Down
2 changes: 1 addition & 1 deletion elk/tests/utils_evaluation/test_eval_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from elk.utils_evaluation.parser import get_parser


def test_args_no_lowercase():
def test_args_no_underscores():
"""
Assert that there are no underscores in the CLI parameter names. We wish
to enforce this style since the GNU style guide recommends against it
Expand Down
5 changes: 3 additions & 2 deletions elk/tests/utils_generation/test_gen_parser.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from elk.utils_generation.parser import get_parser

def test_args_no_lowercase():

def test_args_no_underscores():
"""
Assert that there are no underscores in the CLI parameter names. We wish
to enforce this style since the GNU style guide recommends against it
Expand All @@ -11,4 +12,4 @@ def test_args_no_lowercase():
parser = get_parser()
for cli_flag in parser._actions:
for flag_string in cli_flag.option_strings:
assert "_" not in flag_string
assert "_" not in flag_string
Binary file removed elk/trained/ccs_model.pt
Binary file not shown.

0 comments on commit ad0ef01

Please sign in to comment.