Description Usage Arguments Examples
Create setting for RNN model with python
1 2 3 4 5 6 7 | setRNNTorch(
hidden_size = c(50, 100),
epochs = c(20, 50),
seed = 0,
class_weight = 0,
type = "RNN"
)
|
hidden_size |
The hidden size |
epochs |
The number of epochs |
seed |
A seed for the model |
class_weight |
The class weight used for imbalanced data: 0: Inverse ratio between positives and negatives -1: Focal loss |
type |
It can be normal 'RNN', 'BiRNN' (bidirectional RNN) and 'GRU' |
1 2 3 4 | ## Not run:
model.rnnTorch <- setRNNTorch()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.