# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(CONNECTIONIST_PATH, CONNECTIONIST_HAS_HEADER,
           CONNECTIONIST_DATA_TYPES, CONNECTIONIST_IS_CLASSIFY,
           CONNECTIONIST_DELIM_WHITESPACE, CONNECTIONIST_OUTPUT)
Пример #2
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(BREAST_CANCER_PROG_PATH, BREAST_CANCER_PROG_HAS_HEADER,
           BREAST_CANCER_PROG_CL_DATA_TYPES, BREAST_CANCER_PROG_CL_IS_CLASSIFY,
           BREAST_CANCER_PROG_CL_DELIM_WHITESPACE,
           BREAST_CANCER_PROG_CL_OUTPUT)
Пример #3
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(DIABETES_PATH, DIABETES_HAS_HEADER, DIABETES_DATA_TYPES,
           DIABETES_IS_CLASSIFY, DIABETES_DELIM_WHITESPACE, DIABETES_OUTPUT)
Пример #4
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(CAR_PATH, CAR_HAS_HEADER, CAR_DATA_TYPES, CAR_IS_CLASSIFY, CAR_DELIM_WHITESPACE, CAR_OUTPUT)
Пример #5
0
def main():
    for arg in args:
        try:
            runCsv(arg[0], arg[1], arg[2], arg[3], arg[4], arg[5])
        except Exception:
            pass
Пример #6
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(DERMATOLOGY_PATH, DERMATOLOGY_HAS_HEADER, DERMATOLOGY_DATA_TYPES, DERMATOLOGY_IS_CLASSIFY, DERMATOLOGY_DELIM_WHITESPACE, DERMATOLOGY_OUTPUT)
Пример #7
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(ACUTE_PATH, ACUTE_HAS_HEADER, ACUTE_1_DATA_TYPES, ACUTE_IS_CLASSIFY,
           ACUTE_DELIM_WHITESPACE, ACUTE_1_OUTPUT)
    runCsv(ACUTE_PATH, ACUTE_HAS_HEADER, ACUTE_2_DATA_TYPES, ACUTE_IS_CLASSIFY,
           ACUTE_DELIM_WHITESPACE, ACUTE_2_OUTPUT)
Пример #8
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(CHESS_PATH, CHESS_HAS_HEADER, CHESS_DATA_TYPES, CHESS_IS_CLASSIFY,
           CHESS_DELIM_WHITESPACE, CHESS_OUTPUT)
Пример #9
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(SEISMIC_PATH, SEISMIC_HAS_HEADER, SEISMIC_DATA_TYPES,
           SEISMIC_IS_CLASSIFY, SEISMIC_DELIM_WHITESPACE, SEISMIC_OUTPUT)
Пример #10
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(CREDIT_PATH, CREDIT_HAS_HEADER, CREDIT_DATA_TYPES,
           CREDIT_IS_CLASSIFY, CREDIT_DELIM_WHITESPACE, CREDIT_OUTPUT)
Пример #11
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCompare import *
from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(MONKS_1_PATH, MONKS_HAS_HEADER, MONKS_DATA_TYPES, MONKS_IS_CLASSIFY,
           MONKS_DELIM_WHITESPACE, MONKS_1_OUTPUT)
    runCsv(MONKS_2_PATH, MONKS_HAS_HEADER, MONKS_DATA_TYPES, MONKS_IS_CLASSIFY,
           MONKS_DELIM_WHITESPACE, MONKS_2_OUTPUT)
    runCsv(MONKS_3_PATH, MONKS_HAS_HEADER, MONKS_DATA_TYPES, MONKS_IS_CLASSIFY,
           MONKS_DELIM_WHITESPACE, MONKS_3_OUTPUT)
Пример #12
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(FERTILITY_PATH, FERTILITY_HAS_HEADER, FERTILITY_DATA_TYPES, FERTILITY_IS_CLASSIFY, FERTILITY_DELIM_WHITESPACE, FERTILITY_OUTPUT)
Пример #13
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(MAMMOGRAPHIC_PATH, MAMMOGRAPHIC_HAS_HEADER, MAMMOGRAPHIC_DATA_TYPES,
           MAMMOGRAPHIC_IS_CLASSIFY, MAMMOGRAPHIC_DELIM_WHITESPACE,
           MAMMOGRAPHIC_OUTPUT)
Пример #14
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(HABERMAN_PATH, HABERMAN_HAS_HEADER, HABERMAN_DATA_TYPES,
           HABERMAN_IS_CLASSIFY, HABERMAN_DELIM_WHITESPACE, HABERMAN_OUTPUT)
Пример #15
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(QSAR_PATH, QSAR_HAS_HEADER, QSAR_DATA_TYPES, QSAR_IS_CLASSIFY, QSAR_DELIM_WHITESPACE, QSAR_OUTPUT)
Пример #16
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(NEW_THYROID_PATH, NEW_THYROID_HAS_HEADER, NEW_THYROID_DATA_TYPES,
           NEW_THYROID_IS_CLASSIFY, NEW_THYROID_DELIM_WHITESPACE,
           NEW_THYROID_OUTPUT)
Пример #17
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(GERMAN_PATH, GERMAN_HAS_HEADER, GERMAN_DATA_TYPES,
           GERMAN_IS_CLASSIFY, GERMAN_DELIM_WHITESPACE, GERMAN_OUTPUT)
Пример #18
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(PLRX_PATH, PLRX_HAS_HEADER, PLRX_DATA_TYPES, PLRX_IS_CLASSIFY,
           PLRX_DELIM_WHITESPACE, PLRX_OUTPUT)
Пример #19
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(CLEVELAND_PATH, CLEVELAND_HAS_HEADER, CLEVELAND_DATA_TYPES,
           CLEVELAND_IS_CLASSIFY, CLEVELAND_DELIM_WHITESPACE, CLEVELAND_OUTPUT)
Пример #20
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(SEEDS_PATH, SEEDS_HAS_HEADER, SEEDS_DATA_TYPES, SEEDS_IS_CLASSIFY,
           SEEDS_DELIM_WHITESPACE, SEEDS_OUTPUT)
Пример #21
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCompare import *
from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(TAE_PATH, TAE_HAS_HEADER, TAE_DATA_TYPES, TAE_IS_CLASSIFY, TAE_DELIM_WHITESPACE, TAE_OUTPUT)
Пример #22
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(SOYBEAN_PATH, SOYBEAN_HAS_HEADER, SOYBEAN_DATA_TYPES, SOYBEAN_IS_CLASSIFY, SOYBEAN_DELIM_WHITESPACE, SOYBEAN_OUTPUT)
Пример #23
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(BALANCE_PATH, BALANCE_HAS_HEADER, BALANCE_DATA_TYPES, BALANCE_IS_CLASSIFY, BALANCE_DELIM_WHITESPACE, BALANCE_OUTPUT)
Пример #24
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(TICTAC_PATH, TICTAC_HAS_HEADER, TICTAC_DATA_TYPES, TICTAC_IS_CLASSIFY, TICTAC_DELIM_WHITESPACE, TICTAC_OUTPUT)
Пример #25
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(SPAMBASE_PATH, SPAMBASE_HAS_HEADER, SPAMBASE_DATA_TYPES,
           SPAMBASE_IS_CLASSIFY, SPAMBASE_DELIM_WHITESPACE, SPAMBASE_OUTPUT)
Пример #26
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(HEPATITIS_PATH, HEPATITIS_HAS_HEADER, HEPATITIS_DATA_TYPES,
           HEPATITIS_IS_CLASSIFY, HEPATITIS_DELIM_WHITESPACE, HEPATITIS_OUTPUT)
Пример #27
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCompare import *
from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(HOUSE_VOTES_PATH, HOUSE_VOTES_HAS_HEADER, HOUSE_VOTES_DATA_TYPES, HOUSE_VOTES_IS_CLASSIFY, HOUSE_VOTES_DELIM_WHITESPACE, HOUSE_VOTES_OUTPUT)
Пример #28
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(SPECT_PATH, SPECT_HAS_HEADER, SPECT_DATA_TYPES, SPECT_IS_CLASSIFY,
           SPECT_DELIM_WHITESPACE, SPECT_OUTPUT)
    runCsv(SPECTF_PATH, SPECTF_HAS_HEADER, SPECTF_DATA_TYPES,
           SPECTF_IS_CLASSIFY, SPECTF_DELIM_WHITESPACE, SPECTF_OUTPUT)
Пример #29
0
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(THYROID_ANN_PATH, THYROID_ANN_HAS_HEADER, THYROID_ANN_DATA_TYPES,
           THYROID_ANN_IS_CLASSIFY, THYROID_ANN_DELIM_WHITESPACE,
           THYROID_ANN_OUTPUT)
# Copyright 2015-2016 Stanford University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Main code

from runCsv import *
from ..data.consts import *

if __name__ == "__main__":
    runCsv(ECHOCARDIOGRAM_PATH, ECHOCARDIOGRAM_HAS_HEADER,
           ECHOCARDIOGRAM_DATA_TYPES, ECHOCARDIOGRAM_IS_CLASSIFY,
           ECHOCARDIOGRAM_DELIM_WHITESPACE, ECHOCARDIOGRAM_OUTPUT)