我想實現一個非常簡單的ML學習問題,我用文本來預測一些結果。在R,一些基本的例子是:H20:如何在文本數據上使用漸變提升?
進口一些假的,但有趣的文字數據
library(caret)
library(dplyr)
library(text2vec)
dataframe <- data_frame(id = c(1,2,3,4),
text = c("this is a this", "this is
another",'hello','what???'),
value = c(200,400,120,300),
output = c('win', 'lose','win','lose'))
> dataframe
# A tibble: 4 x 4
id text value output
<dbl> <chr> <dbl> <chr>
1 1 this is a this 200 win
2 2 this is another 400 lose
3 3 hello 120 win
4 4 what??? 300 lose
使用text2vec
讓我的文字稀疏矩陣表示(見https://github.com/dselivanov/text2vec/blob/master/vignettes/text-vectorization.Rmd)
#these are text2vec functions to tokenize and lowercase the text
prep_fun = tolower
tok_fun = word_tokenizer
#create the tokens
train_tokens = dataframe$text %>%
prep_fun %>%
tok_fun
it_train = itoken(train_tokens)
vocab = create_vocabulary(it_train)
vectorizer = vocab_vectorizer(vocab)
dtm_train = create_dtm(it_train, vectorizer)
> dtm_train
4 x 6 sparse Matrix of class "dgCMatrix"
what hello another a is this
1 . . . 1 1 2
2 . . 1 . 1 1
3 . 1 . . . .
4 1 . . . . .
最後,使用我的稀疏矩陣訓練算法(例如,使用caret
)以預測output
。
mymodel <- train(x=dtm_train, y =dataframe$output, method="xgbTree")
> confusionMatrix(mymodel)
Bootstrapped (25 reps) Confusion Matrix
(entries are percentual average cell counts across resamples)
Reference
Prediction lose win
lose 17.6 44.1
win 29.4 8.8
Accuracy (average) : 0.264
我的問題是:
我看到如何使用spark_read_csv
,rsparkling
和as_h2o_frame
將數據導入h20
。 但是,對於第2點和第3點我完全失去了。
有人可以給我一些提示或告訴我,如果這種方法甚至可能與h2o
?
非常感謝!
什麼是it_train變量?我認爲你錯過了代碼中的一步(它幾乎可以重現,但還沒有)。 –
嗨@ErinLeDell你是對的。堅持一秒 –
@ErinLeDell問題更新! –