File tree Expand file tree Collapse file tree 2 files changed +18
-11
lines changed Expand file tree Collapse file tree 2 files changed +18
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Mutagenesis
2
2
3
- The ` Mutagenesis ` dataset comprises 188 molecules trialed for mutagenicity on Salmonella typhimurium, available from
4
- [ relational.fit.cvut.cz] ( https://relational.fit.cvut.cz/dataset/Mutagenesis ) and
5
- [ CTUAvastLab/datasets] ( https://github.com/CTUAvastLab/datasets/tree/main/mutagenesis ) .
6
-
7
- Train, test and validation data can be loaded using:
8
- ``` julia
9
- train_x, train_y = Mutagenesis. traindata ()
10
- test_x, test_y = Mutagenesis. testdata ()
11
- val_x, val_y = Mutagenesis. valdata ()
12
- ```
13
-
14
3
``` @docs
15
4
Mutagenesis
16
5
```
Original file line number Diff line number Diff line change 1
1
export Mutagenesis
2
+
3
+ """
4
+ Mutagenesis
5
+
6
+ Website: https://relational.fit.cvut.cz/dataset/Mutagenesis
7
+ License: CC0
8
+
9
+ The `Mutagenesis` dataset comprises 188 molecules trialed for mutagenicity on Salmonella typhimurium, available from
10
+ [relational.fit.cvut.cz](https://relational.fit.cvut.cz/dataset/Mutagenesis) and
11
+ [CTUAvastLab/datasets](https://github.com/CTUAvastLab/datasets/tree/main/mutagenesis).
12
+
13
+ Train, test and validation data can be loaded using:
14
+ ```julia
15
+ train_x, train_y = Mutagenesis.traindata()
16
+ test_x, test_y = Mutagenesis.testdata()
17
+ val_x, val_y = Mutagenesis.valdata()
18
+ ```
19
+ """
2
20
module Mutagenesis
3
21
4
22
using DataDeps, JSON3
You can’t perform that action at this time.
0 commit comments