-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:FluxML/FastAI.jl
- Loading branch information
Showing
46 changed files
with
1,730 additions
and
397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# How to find functionality | ||
|
||
For some kinds of functionality, FastAI.jl provides feature registries that allow you to search for and use features. The following registries currently exist: | ||
|
||
- [`datasets`](#) to download and unpack datasets, | ||
- [`datarecipes`](#) to load datasets into [data containers](/documents/docs/data_containers.md) that are compatible with a learning task; and | ||
- [`learningtasks`](#) to find learning tasks that are compatible with a dataset | ||
|
||
To load functionality: | ||
|
||
1. Get an entry using its ID | ||
{cell} | ||
```julia | ||
using FastAI | ||
entry = datasets()["mnist_var_size_tiny"] | ||
``` | ||
2. And load it | ||
{cell} | ||
```julia | ||
load(entry) | ||
``` | ||
|
||
|
||
## Datasets | ||
|
||
{cell} | ||
```julia | ||
using FastAI | ||
datasets() | ||
``` | ||
|
||
## Data recipes | ||
|
||
{cell} | ||
```julia | ||
using FastAI | ||
datarecipes() | ||
``` | ||
|
||
## Learning tasks | ||
|
||
{cell} | ||
```julia | ||
using FastAI | ||
learningtasks() | ||
``` |
Oops, something went wrong.
48e27c4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
48e27c4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/60177
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: