Skip to content

Commit 948de74

Browse files
fix links (#22)
* fix links * improve CI
1 parent bd78bcf commit 948de74

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,12 @@ jobs:
1919
matrix:
2020
version:
2121
- '1.9'
22-
# - '1' # add back when 1.10 is out
22+
- '1' # add back when 1.10 is out
2323
- 'nightly'
2424
os:
2525
- ubuntu-latest
26+
- windows-latest
27+
- macOS-latest
2628
arch:
2729
- x64
2830
steps:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# HuggingFaceDatasets
22

3-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://CarloLucibello.github.io/HuggingFaceDatasets.jl/dev)
4-
[![Build Status](https://github.com/CarloLucibello/HuggingFaceDatasets.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/CarloLucibello/HuggingFaceDatasets.jl/actions/workflows/CI.yml?query=branch%3Amain)
5-
[![Coverage](https://codecov.io/gh/CarloLucibello/HuggingFaceDatasets.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/CarloLucibello/HuggingFaceDatasets.jl)
3+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaGenAI.github.io/HuggingFaceDatasets.jl/dev)
4+
[![Build Status](https://github.com/JuliaGenAI/HuggingFaceDatasets.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaGenAI/HuggingFaceDatasets.jl/actions/workflows/CI.yml?query=branch%3Amain)
5+
[![Coverage](https://codecov.io/gh/JuliaGenAI/HuggingFaceDatasets.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaGenAI/HuggingFaceDatasets.jl)
66

77
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.
88

@@ -20,7 +20,7 @@ pkg> add HuggingFaceDatasets
2020

2121
HuggingFaceDatasets.jl provides wrappers around types from the `datasets` python package (e.g. `Dataset` and `DatasetDict`) along with a few related methods.
2222

23-
Check out the [examples/](https://github.com/CarloLucibello/HuggingFaceDatasets.jl/tree/main/examples) folder for usage examples.
23+
Check out the [examples/](https://github.com/JuliaGenAI/HuggingFaceDatasets.jl/tree/main/examples) folder for usage examples.
2424

2525
```julia
2626
julia> train_data = load_dataset("mnist", split = "train")

docs/make.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ DocMeta.setdocmeta!(HuggingFaceDatasets, :DocTestSetup, :(using HuggingFaceDatas
66
makedocs(;
77
modules=[HuggingFaceDatasets],
88
authors="Carlo Lucibello <[email protected]> and contributors",
9-
repo="https://github.com/CarloLucibello/HuggingFaceDatasets.jl/blob/{commit}{path}#{line}",
9+
repo="https://github.com/JuliaGenAI/HuggingFaceDatasets.jl/blob/{commit}{path}#{line}",
1010
sitename="HuggingFaceDatasets.jl",
1111
format=Documenter.HTML(;
1212
prettyurls=get(ENV, "CI", "false") == "true",
13-
canonical="https://CarloLucibello.github.io/HuggingFaceDatasets.jl",
13+
canonical="https://JuliaGenAI.github.io/HuggingFaceDatasets.jl",
1414
assets=String[],
1515
),
1616
pages=[
@@ -19,6 +19,6 @@ makedocs(;
1919
)
2020

2121
deploydocs(;
22-
repo="github.com/CarloLucibello/HuggingFaceDatasets.jl",
22+
repo="github.com/JuliaGenAI/HuggingFaceDatasets.jl",
2323
devbranch="main",
2424
)

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CurrentModule = HuggingFaceDatasets
44

55
# HuggingFaceDatasets
66

7-
Documentation for [HuggingFaceDatasets](https://github.com/CarloLucibello/HuggingFaceDatasets.jl).
7+
Documentation for [HuggingFaceDatasets](https://github.com/JuliaGenAI/HuggingFaceDatasets.jl).
88

99

1010
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.

0 commit comments

Comments
 (0)