Skip to content

Commit

Permalink
Fix MNIST & FashionMNIST docs (#23)
Browse files Browse the repository at this point in the history
* remove mentions of `download/1`

* bump version, alphabetize datasets in readme
  • Loading branch information
t-rutten authored Dec 7, 2021
1 parent f1fd2c8 commit 86037e9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Scidata currently supports the following training and test datasets:
- CIFAR100
- FashionMNIST
- IMDb Reviews
- Yelp Reviews (Full and Polarity)
- Kuzushiji-MNIST (KMNIST)
- MNIST
- Kuzushiji-MNIST(KMNIST)
- Yelp Reviews (Full and Polarity)

Download or fetch datasets locally:

Expand Down Expand Up @@ -53,7 +53,7 @@ batchd_labels =
```elixir
def deps do
[
{:scidata, "~> 0.1.1"}
{:scidata, "~> 0.1.3"}
]
end
```
Expand Down
2 changes: 0 additions & 2 deletions lib/scidata/fashionmnist.ex
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ defmodule Scidata.FashionMNIST do

@doc """
Downloads the FashionMNIST test dataset or fetches it locally.
Accepts the same options as `download/1`.
"""
def download_test() do
{download_images(@test_image_file), download_labels(@test_label_file)}
Expand Down
2 changes: 0 additions & 2 deletions lib/scidata/mnist.ex
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ defmodule Scidata.MNIST do

@doc """
Downloads the MNIST test dataset or fetches it locally.
Accepts the same options as `download/1`.
"""
def download_test() do
{download_images(@test_image_file), download_labels(@test_label_file)}
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Scidata.MixProject do
use Mix.Project

@version "0.1.2"
@version "0.1.3"
@repo_url "https://github.com/elixir-nx/scidata"

def project do
Expand Down

0 comments on commit 86037e9

Please sign in to comment.