├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE.txt ├── README.rst ├── docs └── logo │ ├── strawberry-large.png │ ├── strawberry-medium.png │ └── strawberry-small.png ├── examples ├── iris.py ├── iris_data.csv └── trivial_model.py ├── pypi_upload ├── .pypirc ├── pypi_upload.sh └── setup.py ├── requirements.txt ├── smart_fruit ├── __init__.py ├── feature_class.py ├── feature_types │ ├── __init__.py │ ├── compound_types.py │ ├── feature_type_base.py │ └── simple_types.py ├── model.py ├── model_selection.py └── utils.py └── tests ├── __init__.py ├── test_compound_types.py ├── test_feature_serialization.py ├── test_label_types.py ├── test_model_training.py ├── test_simple_types.py ├── test_trivial_model.py └── test_utils ├── __init__.py ├── example_csv.csv └── test_csv_open.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/README.rst -------------------------------------------------------------------------------- /docs/logo/strawberry-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/docs/logo/strawberry-large.png -------------------------------------------------------------------------------- /docs/logo/strawberry-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/docs/logo/strawberry-medium.png -------------------------------------------------------------------------------- /docs/logo/strawberry-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/docs/logo/strawberry-small.png -------------------------------------------------------------------------------- /examples/iris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/examples/iris.py -------------------------------------------------------------------------------- /examples/iris_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/examples/iris_data.csv -------------------------------------------------------------------------------- /examples/trivial_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/examples/trivial_model.py -------------------------------------------------------------------------------- /pypi_upload/.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/pypi_upload/.pypirc -------------------------------------------------------------------------------- /pypi_upload/pypi_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/pypi_upload/pypi_upload.sh -------------------------------------------------------------------------------- /pypi_upload/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/pypi_upload/setup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/requirements.txt -------------------------------------------------------------------------------- /smart_fruit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/smart_fruit/__init__.py -------------------------------------------------------------------------------- /smart_fruit/feature_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/smart_fruit/feature_class.py -------------------------------------------------------------------------------- /smart_fruit/feature_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/smart_fruit/feature_types/__init__.py -------------------------------------------------------------------------------- /smart_fruit/feature_types/compound_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/smart_fruit/feature_types/compound_types.py -------------------------------------------------------------------------------- /smart_fruit/feature_types/feature_type_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/smart_fruit/feature_types/feature_type_base.py -------------------------------------------------------------------------------- /smart_fruit/feature_types/simple_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/smart_fruit/feature_types/simple_types.py -------------------------------------------------------------------------------- /smart_fruit/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/smart_fruit/model.py -------------------------------------------------------------------------------- /smart_fruit/model_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/smart_fruit/model_selection.py -------------------------------------------------------------------------------- /smart_fruit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/smart_fruit/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_compound_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/tests/test_compound_types.py -------------------------------------------------------------------------------- /tests/test_feature_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/tests/test_feature_serialization.py -------------------------------------------------------------------------------- /tests/test_label_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/tests/test_label_types.py -------------------------------------------------------------------------------- /tests/test_model_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/tests/test_model_training.py -------------------------------------------------------------------------------- /tests/test_simple_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/tests/test_simple_types.py -------------------------------------------------------------------------------- /tests/test_trivial_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/tests/test_trivial_model.py -------------------------------------------------------------------------------- /tests/test_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_utils/example_csv.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | 4,5,6 4 | α,β,γ 5 | -------------------------------------------------------------------------------- /tests/test_utils/test_csv_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madman-bob/Smart-Fruit/HEAD/tests/test_utils/test_csv_open.py --------------------------------------------------------------------------------