We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
first of all, thanks for this great project!
I noticed that in models/main.py (line 206) the fashion mnist dataset is called 'fashion-mnist'.
models/main.py
# Deciding which dataset to use if cfg.dataset == 'mnist' or cfg.dataset == 'fashion-mnist':
But in capslayer/data/datasets/fashion_mnist it is called 'fashion_mnist', therefore main.py doesnt run with fashion mnist dataset.
capslayer/data/datasets/fashion_mnist
Another thing: in capslayer/data/datasets/fashion_mnist/writer.py MNIST_FILES should be FASHION_MNIST_FILES:
capslayer/data/datasets/fashion_mnist/writer.py
def load_fashion_mnist(path, split): split = split.lower() image_file, label_file = [os.path.join(path, file_name) for file_name in MNIST_FILES[split]]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
first of all, thanks for this great project!
I noticed that in
models/main.py
(line 206) the fashion mnist dataset is called 'fashion-mnist'.But in
capslayer/data/datasets/fashion_mnist
it is called 'fashion_mnist', therefore main.py doesnt run with fashion mnist dataset.Another thing:
in
capslayer/data/datasets/fashion_mnist/writer.py
MNIST_FILES should be FASHION_MNIST_FILES:The text was updated successfully, but these errors were encountered: