From 2d33183f4fc6766b2dd5044f05bab935e5b66b8f Mon Sep 17 00:00:00 2001 From: Carlo Lucibello Date: Mon, 19 Feb 2024 06:48:59 +0100 Subject: [PATCH 1/2] fix links --- README.md | 8 ++++---- docs/make.jl | 6 +++--- docs/src/index.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 6aafc6c..418ab2d 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # HuggingFaceDatasets -[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://CarloLucibello.github.io/HuggingFaceDatasets.jl/dev) -[![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) -[![Coverage](https://codecov.io/gh/CarloLucibello/HuggingFaceDatasets.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/CarloLucibello/HuggingFaceDatasets.jl) +[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaGenAI.github.io/HuggingFaceDatasets.jl/dev) +[![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) +[![Coverage](https://codecov.io/gh/JuliaGenAI/HuggingFaceDatasets.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaGenAI/HuggingFaceDatasets.jl) 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. @@ -20,7 +20,7 @@ pkg> add HuggingFaceDatasets HuggingFaceDatasets.jl provides wrappers around types from the `datasets` python package (e.g. `Dataset` and `DatasetDict`) along with a few related methods. -Check out the [examples/](https://github.com/CarloLucibello/HuggingFaceDatasets.jl/tree/main/examples) folder for usage examples. +Check out the [examples/](https://github.com/JuliaGenAI/HuggingFaceDatasets.jl/tree/main/examples) folder for usage examples. ```julia julia> train_data = load_dataset("mnist", split = "train") diff --git a/docs/make.jl b/docs/make.jl index b6657d6..691d014 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -6,11 +6,11 @@ DocMeta.setdocmeta!(HuggingFaceDatasets, :DocTestSetup, :(using HuggingFaceDatas makedocs(; modules=[HuggingFaceDatasets], authors="Carlo Lucibello and contributors", - repo="https://github.com/CarloLucibello/HuggingFaceDatasets.jl/blob/{commit}{path}#{line}", + repo="https://github.com/JuliaGenAI/HuggingFaceDatasets.jl/blob/{commit}{path}#{line}", sitename="HuggingFaceDatasets.jl", format=Documenter.HTML(; prettyurls=get(ENV, "CI", "false") == "true", - canonical="https://CarloLucibello.github.io/HuggingFaceDatasets.jl", + canonical="https://JuliaGenAI.github.io/HuggingFaceDatasets.jl", assets=String[], ), pages=[ @@ -19,6 +19,6 @@ makedocs(; ) deploydocs(; - repo="github.com/CarloLucibello/HuggingFaceDatasets.jl", + repo="github.com/JuliaGenAI/HuggingFaceDatasets.jl", devbranch="main", ) diff --git a/docs/src/index.md b/docs/src/index.md index b1e1265..4e18e8f 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -4,7 +4,7 @@ CurrentModule = HuggingFaceDatasets # HuggingFaceDatasets -Documentation for [HuggingFaceDatasets](https://github.com/CarloLucibello/HuggingFaceDatasets.jl). +Documentation for [HuggingFaceDatasets](https://github.com/JuliaGenAI/HuggingFaceDatasets.jl). 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. From 31cf60bad081afd459feb54aab41a41923ec6278 Mon Sep 17 00:00:00 2001 From: Carlo Lucibello Date: Mon, 19 Feb 2024 06:52:35 +0100 Subject: [PATCH 2/2] improve CI --- .github/workflows/CI.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f8b016e..3a1f8d9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,10 +19,12 @@ jobs: matrix: version: - '1.9' - # - '1' # add back when 1.10 is out + - '1' # add back when 1.10 is out - 'nightly' os: - ubuntu-latest + - windows-latest + - macOS-latest arch: - x64 steps: