Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ImageNetDataset.jl

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://adrhill.github.io/ImageNetDataset.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://adrhill.github.io/ImageNetDataset.jl/dev/)
[![Build Status](https://github.com/adrhill/ImageNetDataset.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/adrhill/ImageNetDataset.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://Julia-XAI.github.io/ImageNetDataset.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://Julia-XAI.github.io/ImageNetDataset.jl/dev/)
[![Build Status](https://github.com/Julia-XAI/ImageNetDataset.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/Julia-XAI/ImageNetDataset.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Aqua](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)

Data loader for the ImageNet 2012 Classification Dataset (ILSVRC 2012-2017) in Julia.
Expand All @@ -13,11 +13,11 @@ The ImageNet dataset can be downloaded at [image-net.org](https://image-net.org/
after signing up and accepting the terms of access.
It is therefore required that you download this dataset manually.

[Installation instructions can be found in the documentation.](https://adrhill.github.io/ImageNetDataset.jl/dev/installation/)
[Installation instructions can be found in the documentation.](https://Julia-XAI.github.io/ImageNetDataset.jl/dev/installation/)

Afterwards, add this package via
```julia-repl
julia> ]add https://github.com/adrhill/ImageNetDataset.jl
julia> ]add https://github.com/Julia-XAI/ImageNetDataset.jl
```

## Examples
Expand Down
4 changes: 2 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ makedocs(;
authors="Adrian Hill <[email protected]>",
sitename="ImageNetDataset.jl",
format=Documenter.HTML(;
canonical="https://adrhill.github.io/ImageNetDataset.jl",
canonical="https://Julia-XAI.github.io/ImageNetDataset.jl",
edit_link="main",
assets=String[],
),
pages=["Home" => "index.md", "Installation" => "installation.md"],
)

deploydocs(; repo="github.com/adrhill/ImageNetDataset.jl", devbranch="main")
deploydocs(; repo="github.com/Julia-XAI/ImageNetDataset.jl", devbranch="main")
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CurrentModule = ImageNetDataset

# ImageNetDataset

Documentation for [ImageNetDataset](https://github.com/adrhill/ImageNetDataset.jl).
Documentation for [ImageNetDataset](https://github.com/Julia-XAI/ImageNetDataset.jl).

## API Reference
### Dataset
Expand Down
2 changes: 1 addition & 1 deletion docs/src/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ to create all class directories and move images into corresponding directories:

```bash
cd ImageNet/val
wget -qO- https://raw.githubusercontent.com/adrhill/ImageNetDataset.jl/master/docs/src/valprep.sh | bash
wget -qO- https://raw.githubusercontent.com/Julia-XAI/ImageNetDataset.jl/master/docs/src/valprep.sh | bash
```

2 changes: 1 addition & 1 deletion src/imagenet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function __init__imagenet()
It is therefore required that you download this dataset manually.

Please follow the instructions at
https://adrhill.github.io/ImageNetDataset.jl/dev/installation/
https://Julia-XAI.github.io/ImageNetDataset.jl/dev/installation/
""",
),
)
Expand Down
Loading