Update README.md
Browse files
README.md
CHANGED
@@ -26,11 +26,6 @@ with a filter applied to reviews about books.
|
|
26 |
|
27 |
The filter_books function is used to filter examples in the data and returns only those that belong to the "book" or "digital ebook purchase" category.
|
28 |
|
29 |
-
def filter_books(example):
|
30 |
-
return (
|
31 |
-
example["product_category"] == "book"
|
32 |
-
or example["product_category"] == "digital_ebook_purchase"
|
33 |
-
)
|
34 |
|
35 |
It achieves the following results on the evaluation set:
|
36 |
- Loss: 3.0270
|
|
|
26 |
|
27 |
The filter_books function is used to filter examples in the data and returns only those that belong to the "book" or "digital ebook purchase" category.
|
28 |
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
It achieves the following results on the evaluation set:
|
31 |
- Loss: 3.0270
|