-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds classify Ollama tests, adds table tests to sentiment
- Loading branch information
1 parent
888cd18
commit b5e9fce
Showing
5 changed files
with
107 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Classify on Ollama works | ||
|
||
Code | ||
llm_classify(reviews, review, labels = c("appliance", "computer")) | ||
Output | ||
review | ||
1 This has been the best TV I've ever used. Great screen, and sound. | ||
2 I regret buying this laptop. It is too slow and the keyboard is too noisy | ||
3 Not sure how to feel about my new washing machine. Great color, but hard to figure | ||
.classify | ||
1 appliance | ||
2 computer | ||
3 appliance | ||
|
||
--- | ||
|
||
Code | ||
llm_classify(reviews, review, pred_name = "new", labels = c("appliance", | ||
"computer")) | ||
Output | ||
review | ||
1 This has been the best TV I've ever used. Great screen, and sound. | ||
2 I regret buying this laptop. It is too slow and the keyboard is too noisy | ||
3 Not sure how to feel about my new washing machine. Great color, but hard to figure | ||
new | ||
1 appliance | ||
2 computer | ||
3 appliance | ||
|
||
--- | ||
|
||
Code | ||
llm_classify(reviews, review, pred_name = "new", labels = c("appliance", | ||
"computer"), additional_prompt = "Consider all laptops as appliances.") | ||
Output | ||
review | ||
1 This has been the best TV I've ever used. Great screen, and sound. | ||
2 I regret buying this laptop. It is too slow and the keyboard is too noisy | ||
3 Not sure how to feel about my new washing machine. Great color, but hard to figure | ||
new | ||
1 appliance | ||
2 appliance | ||
3 appliance | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters