Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
amanchadha
GitHub Repository: amanchadha/coursera-natural-language-processing-specialization
Path: blob/master/3 - Natural Language Processing with Sequence Models/Week 3/data/large/dataset_params.json
65 views
1
{
2
"train_size": 33570,
3
"dev_size": 7194,
4
"test_size": 7194,
5
"vocab_size": 35180,
6
"number_of_tags": 17,
7
"pad_word": "<pad>",
8
"pad_tag": "O",
9
"unk_word": "UNK",
10
"learning_rate": 1e-3,
11
"batch_size": 5,
12
"num_epochs": 10,
13
"lstm_hidden_dim": 50,
14
"embedding_dim": 50
15
}
16