<?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>question How to use Oryx 1 to detect spam email in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/How-to-use-Oryx-1-to-detect-spam-email/m-p/38358#M18490</link>
    <description>&lt;P&gt;Hi Sean,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;We are trying to use Oryx 1 to detect spam email. We have trating data (spam emails with subject and email body as text).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can we use Oryx 1 classification to resolve such&amp;nbsp;a problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If so, how ?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chien&lt;/P&gt;</description>
    <pubDate>Sat, 05 Mar 2016 22:08:14 GMT</pubDate>
    <dc:creator>JasonChen1114</dc:creator>
    <dc:date>2016-03-05T22:08:14Z</dc:date>
    <item>
      <title>How to use Oryx 1 to detect spam email</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-use-Oryx-1-to-detect-spam-email/m-p/38358#M18490</link>
      <description>&lt;P&gt;Hi Sean,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;We are trying to use Oryx 1 to detect spam email. We have trating data (spam emails with subject and email body as text).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can we use Oryx 1 classification to resolve such&amp;nbsp;a problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If so, how ?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chien&lt;/P&gt;</description>
      <pubDate>Sat, 05 Mar 2016 22:08:14 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-use-Oryx-1-to-detect-spam-email/m-p/38358#M18490</guid>
      <dc:creator>JasonChen1114</dc:creator>
      <dc:date>2016-03-05T22:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Oryx 1 to detect spam email</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-use-Oryx-1-to-detect-spam-email/m-p/38366#M18491</link>
      <description>Yes, though I would describe Oryx as support for productionizing some&lt;BR /&gt;kind of learning system. Just making a model is something you should&lt;BR /&gt;do with other tools whose purpose is to build models. Oryx 1 is not&lt;BR /&gt;exactly deprecated, but Oryx 2 is the only version in active&lt;BR /&gt;development, and I'd really encourage you to look there. The good news&lt;BR /&gt;is that it's a lot easier in 2.x to reuse a model building process you&lt;BR /&gt;created in, say, Spark. In 1.x it's not possible.&lt;BR /&gt;</description>
      <pubDate>Sun, 06 Mar 2016 19:34:03 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-use-Oryx-1-to-detect-spam-email/m-p/38366#M18491</guid>
      <dc:creator>srowen</dc:creator>
      <dc:date>2016-03-06T19:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Oryx 1 to detect spam email</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-use-Oryx-1-to-detect-spam-email/m-p/38367#M18492</link>
      <description>&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We will try Oryx 2. However, my question is how to use Oryx (1 or 2) to support spam email classification?&lt;/P&gt;&lt;P&gt;Frrom the Oryx classification exapmle, it looks it requires sample examples with numeric values, while email body is textual. One way is to convert email body into tf*idf features and then it's numeric values to apply Oryx classifier.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It looks the vector dimensition is too high though. Any suggestions ? Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 06 Mar 2016 21:38:47 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-use-Oryx-1-to-detect-spam-email/m-p/38367#M18492</guid>
      <dc:creator>JasonChen1114</dc:creator>
      <dc:date>2016-03-06T21:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Oryx 1 to detect spam email</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-use-Oryx-1-to-detect-spam-email/m-p/38394#M18493</link>
      <description>It includes an implementation of classification using random decision&lt;BR /&gt;forests. Decision forests actually support both categorical and&lt;BR /&gt;numeric features. However, for text classification, you're correct&lt;BR /&gt;that you typically transform your text into numeric vectors via TF-IDF&lt;BR /&gt;first. This is something you'd have to do separately. Yes, the&lt;BR /&gt;dimensionality is high. Decision forests can be fine with this, but,&lt;BR /&gt;they're not the most natural choice for text classification.&lt;BR /&gt;&lt;BR /&gt;You may see what I mean that Oryx is not a tool for classification,&lt;BR /&gt;but a tool for productionizing, which happens to have an&lt;BR /&gt;implementation of a classifier.&lt;BR /&gt;&lt;BR /&gt;In 2.x, you also have an implementation of decision forests, and also&lt;BR /&gt;don't have magic TF-IDF built in or anything. However the architecture&lt;BR /&gt;is much more supportive of putting your own Spark-based pipeline and&lt;BR /&gt;model build into the framework. 1.x did not support this.&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Mar 2016 09:52:03 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-use-Oryx-1-to-detect-spam-email/m-p/38394#M18493</guid>
      <dc:creator>srowen</dc:creator>
      <dc:date>2016-03-07T09:52:03Z</dc:date>
    </item>
  </channel>
</rss>

