I have a dataset that looks like this:
product_name | brand | price_change_percentage | release_year |
---|---|---|---|
Toy X | X | 20 | 2001 |
Toy Y | Y | -12 | 2020 |
I would like to use Tensorflow to predict price_change_percentage based on product_name, brand, and release_year.
Which kind of Tensorflow model should I conduct and how can I change the non-numerical product_name and brand values into numerical values? Thank you very much!