Skip to content
This repository has been archived by the owner on Jun 1, 2019. It is now read-only.

Commit

Permalink
move language model builder to its own tab
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Dec 19, 2017
1 parent 75dcb99 commit 938a9cd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 19 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ einstein_platform.pem
**profiles
certs
**apexScripts
.gitignore
.gitignore
.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<aura:component controller="Einstein_PlaygroundController">
<aura:component controller="Einstein_PlaygroundController" implements="flexipage:availableForAllPageTypes">

<aura:attribute name="objects" type="object[]" />
<aura:attribute name="selectedObject" type="string" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,16 @@
<aura:set attribute="label">
<lightning:icon iconName="utility:preview" size="xx-small" /> Image Classification
</aura:set>
<!-- <c:EinsteinImageClassification allModelsByType="{! v.modelsByType }" /> -->
<c:EinsteinGenericPlaygroundComponent dataType="image" iconName="utility:preview" allModelsByType="{! v.modelsByType }"/>
</lightning:tab>
<lightning:tab>
<aura:set attribute="label">
<lightning:icon iconName="utility:richtextbulletedlist" size="xx-small" /> Image Classification (Multi)
</aura:set>
<!-- <c:EinsteinImageClassificationMultiImage allModelsByType="{! v.modelsByType }" /> -->
<c:EinsteinGenericPlaygroundComponent dataType="image-multi-label" iconName="utility:richtextbulletedlist" allModelsByType="{! v.modelsByType }" />

</lightning:tab>
<!-- <lightning:tab>
<aura:set attribute="label">
<lightning:icon iconName="utility:zoomin" size="xx-small" /> Object Detection
</aura:set>
<c:EinsteinObjectDetection allModelsByType="{! v.modelsByType }" />
</lightning:tab> -->

<lightning:tab>
<aura:set attribute="label">
<lightning:icon iconName="utility:zoomin" size="xx-small" /> Object Detection
Expand All @@ -52,7 +45,6 @@
<aura:set attribute="label">
<lightning:icon iconName="utility:like" size="xx-small" /> Sentiment
</aura:set>
<!-- <c:EinsteinSentiment allModelsByType="{! v.modelsByType }" /> -->
<c:EinsteinGenericPlaygroundComponent dataType="text-sentiment" iconName="utility:like" allModelsByType="{! v.modelsByType }" />

</lightning:tab>
Expand All @@ -61,14 +53,8 @@
<lightning:icon iconName="utility:signpost" size="xx-small" /> Intent
</aura:set>
<c:EinsteinGenericPlaygroundComponent dataType="text-intent" iconName="utility:signpost" allModelsByType="{! v.modelsByType }" />
<!-- <c:EinsteinIntent allModelsByType="{! v.modelsByType }" /> -->
</lightning:tab>
<lightning:tab>
<aura:set attribute="label">
<lightning:icon iconName="utility:magicwand" size="xx-small" /> Language Dataset Maker
</aura:set>
<c:EinsteinLanguageModelBuilder/>
</lightning:tab>

</aura:if>
</lightning:tabset>

Expand Down
2 changes: 1 addition & 1 deletion orgInit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ sfdx force:data:tree:import -f data/Account.json
# sfdx force:apex:execute -f SetupScripting/apexDeletions.cls
# sfdx force:data:tree:import -p data/masterImportPlan.json
# sfdx force:apex:execute -f SetupScripting/urlSetup.cls
sfdx force:org:open -p /one/one.app#/setup/home -p /one/one.app#/setup/CertificatesAndKeysManagement/home
sfdx force:org:open -p /one/one.app#/setup/CertificatesAndKeysManagement/home

0 comments on commit 938a9cd

Please sign in to comment.