├── GPLv2 ├── LICENSE ├── doc └── imgs │ ├── cifar100 │ ├── 24900.png │ ├── 31377.png │ ├── 48760.png │ └── 6093.png │ ├── fashion_mnist │ ├── 22264.png │ ├── 28264.png │ ├── 33982.png │ ├── 42018.png │ └── 45592.png │ ├── table3.png │ └── twenty_news │ ├── med_0.png │ └── pol_0.png ├── readme.md ├── requirements.txt ├── res └── cifar100 │ └── cifar100_names └── src ├── __init__.py ├── datasets ├── __init__.py ├── cifar100_classes.py └── load_datasets.py ├── examples ├── __init__.py ├── find_in_cifar.py ├── find_in_fashion_mnist.py ├── find_in_mnist.py └── find_in_twenty_newsgroups.py ├── labelfix.py ├── models ├── __init__.py ├── cnn_keras.py └── dense_net_keras.py ├── quantitative_evaluation.py └── utils ├── __init__.py ├── view_20_newsgroup.py └── visualize.py /GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/GPLv2 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/LICENSE -------------------------------------------------------------------------------- /doc/imgs/cifar100/24900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/cifar100/24900.png -------------------------------------------------------------------------------- /doc/imgs/cifar100/31377.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/cifar100/31377.png -------------------------------------------------------------------------------- /doc/imgs/cifar100/48760.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/cifar100/48760.png -------------------------------------------------------------------------------- /doc/imgs/cifar100/6093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/cifar100/6093.png -------------------------------------------------------------------------------- /doc/imgs/fashion_mnist/22264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/fashion_mnist/22264.png -------------------------------------------------------------------------------- /doc/imgs/fashion_mnist/28264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/fashion_mnist/28264.png -------------------------------------------------------------------------------- /doc/imgs/fashion_mnist/33982.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/fashion_mnist/33982.png -------------------------------------------------------------------------------- /doc/imgs/fashion_mnist/42018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/fashion_mnist/42018.png -------------------------------------------------------------------------------- /doc/imgs/fashion_mnist/45592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/fashion_mnist/45592.png -------------------------------------------------------------------------------- /doc/imgs/table3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/table3.png -------------------------------------------------------------------------------- /doc/imgs/twenty_news/med_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/twenty_news/med_0.png -------------------------------------------------------------------------------- /doc/imgs/twenty_news/pol_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/doc/imgs/twenty_news/pol_0.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/cifar100/cifar100_names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/res/cifar100/cifar100_names -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/datasets/cifar100_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/datasets/cifar100_classes.py -------------------------------------------------------------------------------- /src/datasets/load_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/datasets/load_datasets.py -------------------------------------------------------------------------------- /src/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/examples/find_in_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/examples/find_in_cifar.py -------------------------------------------------------------------------------- /src/examples/find_in_fashion_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/examples/find_in_fashion_mnist.py -------------------------------------------------------------------------------- /src/examples/find_in_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/examples/find_in_mnist.py -------------------------------------------------------------------------------- /src/examples/find_in_twenty_newsgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/examples/find_in_twenty_newsgroups.py -------------------------------------------------------------------------------- /src/labelfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/labelfix.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/models/cnn_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/models/cnn_keras.py -------------------------------------------------------------------------------- /src/models/dense_net_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/models/dense_net_keras.py -------------------------------------------------------------------------------- /src/quantitative_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/quantitative_evaluation.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/view_20_newsgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/utils/view_20_newsgroup.py -------------------------------------------------------------------------------- /src/utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller91/labelfix/HEAD/src/utils/visualize.py --------------------------------------------------------------------------------