我正在使用undersocres.me开发WordPress主题。当我开始 开发和使用
logits = model(input_ids,segment_ids,inputmask_1)
logits_1 = model(input_ids_1, segment_ids_1, input_mask_1) #out of memory occurs
logits_2 = model(input_ids_2 , segment_ids_2, input_mask_2)
loss_fct = CrossEntropyLoss()
loss_fct_auxiliary = CrossEntropyLoss()
loss = loss_fct(logits.view(-1, num_labels), label_ids.view(-1))
loss_auxiliary = loss_fct_auxiliary(logits_1, float(logits_2))
loss = loss + loss_auxiliary
显示错误。
wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.css');
bootstrap.css:8未捕获的SyntaxError:意外令牌:
答案 0 :(得分:1)
您需要使用wp_enqueue_style
而不是wp_enqueue_script
wp_enqueue_style( 'bootstrap', get_stylesheet_directory_uri() . '/css/bootstrap.css');
答案 1 :(得分:-1)
只需将获取模板目录更改为get_stylesheet_directory_uri()
,然后将队列添加到wp_enqueue_style
示例:
wp_enqueue_style( 'bootstrap', get_stylesheet_directory_uri() . '/css/bootstrap.css');
https://developer.wordpress.org/reference/functions/wp_enqueue_style/