diff --git a/scripts/.gitignore b/scripts/.gitignore new file mode 100644 index 0000000..2f7ffd3 --- /dev/null +++ b/scripts/.gitignore @@ -0,0 +1,3 @@ +add_a_method.sh +add_a_control_method.sh +add_a_metric.sh \ No newline at end of file diff --git a/scripts/add_a_control_method.sh b/scripts/add_a_control_method.sh deleted file mode 100755 index 3e53518..0000000 --- a/scripts/add_a_control_method.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -task_name="denoising" -component_name="my_control_method" -component_lang="python" # change this to "r" if need be - -common/create_component/create_component \ - --task $task_name \ - --language "$component_lang" \ - --name "$component_name" \ - --api_file src/api/comp_control_method.yaml \ - --output "src/control_methods/$component_name" \ No newline at end of file diff --git a/scripts/add_a_method.sh b/scripts/add_a_method.sh deleted file mode 100755 index d746fbc..0000000 --- a/scripts/add_a_method.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -task_name="denoising" -component_name="my_method" -component_lang="python" # change this to "r" if need be - -common/create_component/create_component \ - --task $task_name \ - --language "$component_lang" \ - --name "$component_name" \ - --api_file src/api/comp_method.yaml \ - --output "src/methods/$component_name" \ No newline at end of file diff --git a/scripts/add_a_metric.sh b/scripts/add_a_metric.sh deleted file mode 100755 index 0bf5f60..0000000 --- a/scripts/add_a_metric.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -task_name="denoising" -component_name="my_metric" -component_lang="python" # change this to "r" if need be - -common/create_component/create_component \ - --task $task_name \ - --language "$component_lang" \ - --name "$component_name" \ - --api_file src/api/comp_metric.yaml \ - --output "src/metrics/$component_name" \ No newline at end of file diff --git a/scripts/init_submodule.sh b/scripts/init_submodule.sh deleted file mode 100755 index ef2a754..0000000 --- a/scripts/init_submodule.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -git submodule update --init --recursive \ No newline at end of file