TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Machine Learning for Relational Data

1 pointsby riphayover 8 years ago
I&#x27;ve been dabbling in machine learning and trying to find a way to apply it to some of the data at work. I work in a custom fabrication &#x2F; construction company and I&#x27;m trying to build a regression tool with Tensorflow to predict fabrication time at a piece-level using time data at a higher &quot;project-level.&quot; A simplified model of what I&#x27;m looking at:<p>Project-level data: Special requirements [Feature], Time taken by various departments [welding, painting, shipping, etc.] [LABELS]<p>Piece-level Data: Type of piece [F], Weight [F], Length [F], # of attachments [F], [Desired output time] (does not exist historically)<p>Attachment-level Data: Type [F], Length [F], Weight [F]<p>All of the classification and regression examples I&#x27;ve been able to find are for &quot;flat&quot; non-relational data. Some of the features can be flattened (such as requirements), crucially the existing labels cannot be flattened without making very broad assumptions (i.e. distributing the time among the pieces by their weight).<p>Are there any examples anyone is aware of that could help me build a framework for this problem? Is ML even the right approach for this? Thank you for your help.<p>(edited for clarity)

1 comment

davelnewtonover 8 years ago
I&#x27;m not sure ML would be required, depending on the data you have, but maybe.<p>In any case, the easiest thing to do is to create flat data from your existing relational data.