khulnasoft commited on
Commit
1d91823
·
verified ·
1 Parent(s): ff5a68c

Add files using upload-large-folder tool

Browse files
Files changed (1) hide show
  1. task_config.json +23 -0
task_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "task_name": "text_complexity_prediction",
3
+ "model_type": "regression",
4
+ "output_mode": "multi_output",
5
+ "metrics": [
6
+ "flesch_reading_ease",
7
+ "gunning_fog_index",
8
+ "smog_index",
9
+ "coleman_liau_index",
10
+ "automated_readability_index",
11
+ "literary_complexity_score"
12
+ ],
13
+ "num_outputs": 6,
14
+ "max_length": 512,
15
+ "training": {
16
+ "num_epochs": 15,
17
+ "batch_size": 16,
18
+ "learning_rate": 2e-5,
19
+ "warmup_ratio": 0.1,
20
+ "weight_decay": 0.01,
21
+ "loss_function": "mse"
22
+ }
23
+ }