You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A julia wrapper around the Hugging Face `datasets` python package, exposing a large collection
9
-
of machine learning datasets.
8
+
HuggingFaceDatasets.jl is a non-official julia wrapper around the python package `datasets` from Hugging Face. `datasets` contains a large collection of machine learning datasets (see [here](https://huggingface.co/datasets) for a list) that this package makes available to the julia ecosystem.
10
9
11
10
This package is built on top of [PythonCall.jl](https://github.com/cjdoris/PythonCall.jl).
12
11
13
12
## Installation
14
13
15
-
This package is currently under development and not registered yet.
16
-
You can install it using the Julia package manager with the command
14
+
HuggingFaceDatasets.jl is a registered Julia package. You can easily install it through the package manager:
HuggingFaceDatasets.jl provides a few wrappers around types from the `datasets` python package,
25
-
along with a few related methods.
22
+
HuggingFaceDatasets.jl provides wrappers around types from the `datasets` python package (e.g. `Dataset` and `DatasetDict`) along with a few related methods.
26
23
27
24
Check out the `examples/` folder for usage examples.
Documentation for [HuggingFaceDatasets](https://github.com/CarloLucibello/HuggingFaceDatasets.jl).
8
8
9
-
```@index
9
+
10
+
HuggingFaceDatasets.jl is a non-official julia wrapper around the python package `datasets` from Hugging Face. `datasets` contains a large collection of machine learning datasets (see [here](https://huggingface.co/datasets) for a list) that this package makes available to the julia ecosystem.
11
+
12
+
This package is built on top of [PythonCall.jl](https://github.com/cjdoris/PythonCall.jl).
13
+
14
+
## Installation
15
+
16
+
HuggingFaceDatasets.jl is a registered Julia package. You can easily install it through the package manager:
17
+
18
+
```julia
19
+
pkg> add HuggingFaceDatasets
10
20
```
11
21
12
-
```@autodocs
13
-
Modules = [HuggingFaceDatasets]
22
+
## Usage
23
+
24
+
HuggingFaceDatasets.jl provides wrappers around types from the `datasets` python package (e.g. `Dataset` and `DatasetDict`) along with a few related methods.
25
+
26
+
Check out the `examples/` folder for usage examples.
0 commit comments