├── .github └── workflows │ └── tests.yml ├── .gitignore ├── CITATION.cff ├── Dockerfile ├── LICENSE ├── README.md ├── bibliography.bib ├── cnn_models.py ├── logs └── emptyfileforgit.txt ├── lucas_classification.py ├── requirements.txt └── tests └── test_cnn_models.py /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/README.md -------------------------------------------------------------------------------- /bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/bibliography.bib -------------------------------------------------------------------------------- /cnn_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/cnn_models.py -------------------------------------------------------------------------------- /logs/emptyfileforgit.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lucas_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/lucas_classification.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/test_cnn_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixriese/CNN-SoilTextureClassification/HEAD/tests/test_cnn_models.py --------------------------------------------------------------------------------