File tree Expand file tree Collapse file tree 3 files changed +61
-5
lines changed Expand file tree Collapse file tree 3 files changed +61
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : TagBot
2
+ on :
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ schedule :
7
+ - cron : 0 * * * *
8
+ jobs :
9
+ TagBot :
10
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : JuliaRegistries/TagBot@v1
14
+ with :
15
+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
1
# RelationalDatasets.jl
2
+
3
+ > * A small library for loading and downloading relational datasets.*
4
+ >
5
+ > or:
6
+ >
7
+ > * The [ ` relational-datasets ` ] ( https://github.com/srlearn/relational-datasets )
8
+ Python package—but written in Julia.*
9
+
10
+ ## Usage
11
+
12
+ ` RelationalDatasets.jl ` exports a single function: ` load ` to return train
13
+ and test folds.
14
+
15
+ ``` julia
16
+ using RelationalDatasets
17
+
18
+ train, test = load (" webkb" , " v0.0.4" , fold= 2 )
19
+
20
+ println (length (train. facts))
21
+ ```
22
+
23
+ ## Install
24
+
25
+ ### From Registry
26
+
27
+ WIP
28
+
29
+ ### From GitHub Source
30
+
31
+ ``` bash
32
+ git clone https://github.com/srlearn/RelationalDatasets.jl.git
33
+ cd RelationalDatasets.jl
34
+ ```
35
+
36
+ ``` julia
37
+ ] add RelationalDatasets
38
+ ```
39
+
40
+ ` ZipFile.jl ` seems to fail occasionally. If an error is raised, try
41
+ instantiating the package:
42
+
43
+ ``` julia
44
+ ] activate .
45
+ using Pkg
46
+ Pkg. instantiate ()
47
+ ```
Original file line number Diff line number Diff line change 1
1
# Copyright © 2021 Alexander L. Hayes
2
2
# Apache 2.0 License
3
3
4
- # TODO (hayesall): Cross-platform paths?
5
- # TODO (hayesall): ZipFile's build is a little weird, make sure it works in CI
6
- # using Pkg
7
- # Pkg.instantiate()
8
-
9
4
""" Request copies of relational datasets.
10
5
"""
11
6
You can’t perform that action at this time.
0 commit comments