<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Feature store : Can create_training_set() be implemented to execute an inner join? in Machine Learning</title>
    <link>https://community.databricks.com/t5/machine-learning/feature-store-can-create-training-set-be-implemented-to-execute/m-p/30151#M1623</link>
    <description>&lt;P&gt;Hello, @Thibault Daoulas​! My name is Piper, and I'm a moderator here in the community. It's nice to meet you and welcome to the community. Thank you for your question!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We'll give the community some time to respond, and then we will come back if we need to. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;</description>
    <pubDate>Tue, 01 Feb 2022 16:57:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-02-01T16:57:50Z</dc:date>
    <item>
      <title>Feature store : Can create_training_set() be implemented to execute an inner join?</title>
      <link>https://community.databricks.com/t5/machine-learning/feature-store-can-create-training-set-be-implemented-to-execute/m-p/30150#M1622</link>
      <description>&lt;P&gt;For timeseries feature tables, an inner join is made at the creation of the feature table. For the other type of feature tables, a left join is made, so NaN values can show up in the training set. Can the inner join in create_training_set() method be implemented with a parameter?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 11:19:16 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/feature-store-can-create-training-set-be-implemented-to-execute/m-p/30150#M1622</guid>
      <dc:creator>thib</dc:creator>
      <dc:date>2022-02-01T11:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Feature store : Can create_training_set() be implemented to execute an inner join?</title>
      <link>https://community.databricks.com/t5/machine-learning/feature-store-can-create-training-set-be-implemented-to-execute/m-p/30151#M1623</link>
      <description>&lt;P&gt;Hello, @Thibault Daoulas​! My name is Piper, and I'm a moderator here in the community. It's nice to meet you and welcome to the community. Thank you for your question!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We'll give the community some time to respond, and then we will come back if we need to. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 16:57:50 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/feature-store-can-create-training-set-be-implemented-to-execute/m-p/30151#M1623</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-01T16:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Feature store : Can create_training_set() be implemented to execute an inner join?</title>
      <link>https://community.databricks.com/t5/machine-learning/feature-store-can-create-training-set-be-implemented-to-execute/m-p/30152#M1624</link>
      <description>&lt;P&gt;create_training_set performs left join. It is just a simple function which select data from Spark SQL database used by feature store. You can just write own code with inner join:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;customer_features_df = spark.sql("SELECT * FROM recommender_system.customer_features")
product_features_df = spark.sql("SELECT * FROM recommender_system.product_features")
&amp;nbsp;
training_df.join(
  customer_features_df,
  on=[training_df.cid == customer_features_df.customer_id,
      training_df.transaction_dt == customer_features_df.dt],
  how="inner"
).join(
  product_features_df,
  on="product_id",
  how="inner"
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 20:32:31 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/feature-store-can-create-training-set-be-implemented-to-execute/m-p/30152#M1624</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2022-02-01T20:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Feature store : Can create_training_set() be implemented to execute an inner join?</title>
      <link>https://community.databricks.com/t5/machine-learning/feature-store-can-create-training-set-be-implemented-to-execute/m-p/30153#M1625</link>
      <description>&lt;P&gt;Thank you Hubert, that's a good alternative, I just thought I'd stick to the api as much as possible, but this solves it.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 08:11:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/feature-store-can-create-training-set-be-implemented-to-execute/m-p/30153#M1625</guid>
      <dc:creator>thib</dc:creator>
      <dc:date>2022-02-02T08:11:26Z</dc:date>
    </item>
  </channel>
</rss>

