我尝试使用 flexdashboard 对词嵌入结果进行交互式可视化,但我不明白使用闪亮模块背后的逻辑。
在我的 Rmd 仪表板中,加载所需的库后,我首先加载我要处理的 3 个模型:
---
title: "Embedding Explorer"
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: fill
runtime: shiny
---
```{r setup, include=FALSE}
library(flexdashboard)
library(wordVectors)
library(plotly)
library(shiny)
library(shinyjs)
```
```{r global, include=FALSE}
model_1 = wordVectors::read.vectors('./models/word_embeddings_1.bin')
model_2 = wordVectors::read.vectors('./models/word_embeddings_2.bin')
model_3 = wordVectors::read.vectors('./models/word_embeddings_3.bin')
```
然后我希望仪表板的每个组件都加载一个特定的模块。例如,在侧边栏中,我想显示一个 selectInput 对象来选择其中一个模型。为此,我编写了一个 R 脚本模块 Models.R:
# UI function
selectModelInput <- function(id) {
ns <- NS(id)
tagList(
selectInput(ns("target_model"),label="Target model",c("gloVe","Word2Vec","Fasttext"))
)
}
# Server function
selectModel <- function(input, output,session) {
observeEvent(input$target_model,{
if (input$target_model=="gloVe"){
model = model_1
}else if (input$target_model=="Word2Vec"){
model = model_2
}else if (input$target_model=="Fasttext"){
model = model_3
}
output$model <- model #add an output element
})
}
因此,我在我的 Rmd 文件中调用了这个模块:
```{r sidepanel}
# include the module
source("./modules/Models.R")
# call the module
selectModelInput("mod")
model <- callModule(selectModel,"mod") #add model in variable
renderText("Vocabulary size:")
renderPrint(nrow(model))
renderText("Embeddings dim:")
renderPrint(ncol(model))
```
这样做,我收到一条错误消息,指出“模型”对象不存在。也许问题是模块无法从全局部分访问 model_x ?还是我错过了一些允许将“模型”对象保存在某处的东西?顺便说一句,我不太了解调用模块的行为(尤其是 id 参数“mod”或其他什么的作用是什么?)。
我确切地说我已经开发了一个完美运行的经典闪亮应用程序(服务器/用户界面,不使用模块),但我想让可视化更加“专业”......
谢谢你的帮助!
更新:出于好奇,我打印了“模型”输出:
selectModelInput("mod")
model <- callModule(selectModel,"mod")
renderPrint(model)
这是结果:
<Observer>
Public:
.autoDestroy: TRUE
.autoDestroyHandle: function ()
.createContext: function ()
.ctx: environment
.destroyed: FALSE
.domain: session_proxy
.execCount: 2
.func: function (...)
.invalidateCallbacks: list
.label: observeEvent(input$target_model)
.onDomainEnded: function ()
.onResume: function ()
.prevId: 13
.priority: 0
.suspended: FALSE
clone: function (deep = FALSE)
destroy: function ()
initialize: function (observerFunc, label, suspended = FALSE, priority = 0,
onInvalidate: function (callback)
resume: function ()
run: function ()
self: Observer, R6
setAutoDestroy: function (autoDestroy)
setPriority: function (priority = 0)
suspend: function ()
似乎“模型”变量不是预期的(即模型_1、模型_2 或模型_3)......为什么?