BartMassey / PlayRustClassifier

A system for classifying specific reddit posts on the rust subreddit.
MIT License
2 stars 0 forks source link

Implement Serialize and Deserialize for RawFeatures #3

Open BartMassey opened 3 years ago

BartMassey commented 3 years ago

A lot of boilerplate code can be removed simply by automatically deriving these macros and deserializing right into RawFeatures from the Reddit response. Serde provides support for handling extra fields as well, and it should be used here.

BartMassey commented 3 years ago

Copied from insanitybit/PlayRustClassifier#1