discussion on how we can use statistical methods to measure and improve the efficacy of http://freeCodeCamp.com
Hi, I'm pretty new to ML and trying to find out if my use case is already implemented and available to use.
Specifically I'd search something js based to use with node, like brain.js or tensorflow-js.
Im looking for a specific usecase to implement: I have a text and want to extract multiple specifications from that.
Probably it will use LSTM, but I would need multiple outputs for my input
It would be awesome if it could work in such a way:
Input: "Intel Core i7-7500U 2,70 GHz, 16 GB DDR4"
Output: { cpuManufactor: "Intel", cpuClockRate: "2,70", "memorySize": 16, "memoryType": "DDR4" }
The input wouln't always have the same length or contain the same information.
If it wouldn't work this way I could settle for a less dynamic pattern like:
Output: { cpuManufactorIntel: 1, cpuClockRateIs270: 1, memorySizeIs16: 1 memoryTypeIsDDR4: 1 }
However, getting near the first example would be awesome.
As the concept behind this text classification is pretty general and not related to my specific data I believe something similar to this must be implemented somewhere already.
However I didn't really find anything yet.
Thanks in advance for your help!