Lime

R: LIME returns error on different feature numbers when it's not the case

心不动则不痛 提交于 2019-12-01 12:08:44
I'm building a text classifier of Clinton & Trump tweets (data can be found on Kaggle ). I'm doing EDA and modelling using quanteda package: library(dplyr) library(stringr) library(quanteda) library(lime) #data prep tweet_csv <- read_csv("tweets.csv") tweet_data <- tweet_csv %>% select(author = handle, text, retweet_count, favorite_count, source_url, timestamp = time) %>% mutate(date = as_date(str_sub(timestamp, 1, 10)), hour = hour(hms(str_sub(timestamp, 12, 19))), tweet_num = row_number()) %>% select(-timestamp) # creating corpus and dfm tweet_corpus <- corpus(tweet_data) edited_dfm <- dfm

R: LIME returns error on different feature numbers when it's not the case

拟墨画扇 提交于 2019-12-01 10:43:24
问题 I'm building a text classifier of Clinton & Trump tweets (data can be found on Kaggle ). I'm doing EDA and modelling using quanteda package: library(dplyr) library(stringr) library(quanteda) library(lime) #data prep tweet_csv <- read_csv("tweets.csv") tweet_data <- tweet_csv %>% select(author = handle, text, retweet_count, favorite_count, source_url, timestamp = time) %>% mutate(date = as_date(str_sub(timestamp, 1, 10)), hour = hour(hms(str_sub(timestamp, 12, 19))), tweet_num = row_number())

IT兄弟连 HTML5教程 HTML语言的语法 2

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-30 11:52:34
HTML颜色值的设置 大多数浏览器都支持颜色名集合,颜色值是一个关键字或一个RGB格式的数字,在网页中用得很多。仅仅有16种颜色名被W3C的HTML 4.0标准所支持,它们是:aqua、black、blue、fuchsia、gray、green、lime、maroon、navy、olive、purple、red、silver、teal、white、yellow。如果需要使用其他的颜色,就需要使用十六进制的颜色值。十六进制的颜色值是由一个十六进制符号来定义的,这个符号由红色、绿色和蓝色的值组成(RGB)。每种颜色的最小值是0(十六进制:#000),最大值是255(十六进制:#FFF)。也就是每个原色可有256种彩度,故此三原色可混合成16 777 216种颜色。应用时需要在每个RGB值之前加上“#”符号,例如bgcolor="#00ff00"。如果使用英文名字表示颜色值,可以直接写名字,例如bgcolor="green"。 HTML文档注释 如果希望在源代码中添加注释,便于阅读,可以以“<!--”开始,以“-->”结束。HTML注释的使用如下所示: 注释语句只出现在源代码中,浏览器在解释代码时会忽略注释的内容,而不会在浏览器中显示。这样可以为自己或者别人进行注释,或者临时注释掉没有准备好的文档部分。但要注意不要在注释中再包含注释,而且注释不能在标记中使用。此外,注释可以包围和隐藏标记