Skip to content

Feature release prep 0.12.0 #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Change Log
==========
## Version 0.12.0
_2016_10_27_
_2016-11-4_
* New: Added streaming `SpeechToText` example.
* New: Abstraction for `Personality Insights V3`

## Version 0.11.0
_2016_10_27_
_2016-10-27_
* New: Abstracted `Speech to Text` customization methods.

## Version 0.10.0
_2016_09_23_
_2016-09-23_

* New: Added `similarity search` to the `Visual Recognition` service.
* Fix: `Touch Widget` improvmements.
* Fix: `Touch Widget` improvements.
* Fix: Disabled 3rd Party plugin warnings.
* Fix: Removed `Conversation` Message overload method that takes only input and conversationID.
* Fix: Rewrote `Conversation` example script to show how to create MessageRequest object.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@ private void OnGetCombinedData(CombinedCallData combinedData, string data)


### Personality Insights
The IBM Watson™ [Personality Insights][personality_insights] service enables applications to derive insights from social media, enterprise data, or other digital communications. The service uses linguistic analytics to infer individuals' intrinsic personality characteristics, including Big Five, Needs, and Values, from digital communications such as email, text messages, tweets, and forum posts. The service can automatically infer, from potentially noisy social media, portraits of individuals that reflect their personality characteristics.
The IBM Watson™ [Personality Insights][personality_insights] service provides a Representational State Transfer (REST) Application Programming Interface (API) that enables applications to derive insights from social media, enterprise data, or other digital communications. The service uses linguistic analytics to infer individuals' intrinsic personality characteristics, including Big Five, Needs, and Values, from digital communications such as email, text messages, tweets, and forum posts. The service can automatically infer, from potentially noisy social media, portraits of individuals that reflect their personality characteristics. The service can report consumption preferences based on the results of its analysis, and for JSON content that is timestamped, it can report temporal behavior.

```cs
PersonalityInsights m_personalityInsights = new PersonalityInsights();
Expand Down
8 changes: 4 additions & 4 deletions Scripts/UnitTests/TestSpeechToText.cs
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,10 @@ public override IEnumerator RunTest()
// yield return null;

// DeleteCustomization
Log.Debug("TestSpeechToText", "********** Attempting to to delete customization {0}", m_CreatedCustomizationID);
m_SpeechToText.DeleteCustomization(HandleDeleteCustomization, m_CreatedCustomizationID);
while (!m_DeleteCustomizationTested)
yield return null;
//Log.Debug("TestSpeechToText", "********** Attempting to to delete customization {0}", m_CreatedCustomizationID);
//m_SpeechToText.DeleteCustomization(HandleDeleteCustomization, m_CreatedCustomizationID);
//while (!m_DeleteCustomizationTested)
// yield return null;

yield break;
}
Expand Down
24 changes: 16 additions & 8 deletions Scripts/UnitTests/TestVisualRecognition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -399,10 +399,14 @@ private void OnDetectFacesGet(FacesTopLevelMultiple multipleImages, string custo
Log.Debug("TestVisualRecognition", "\tDetectFaces GET source_url: {0}, resolved_url: {1}", faces.source_url, faces.resolved_url);
foreach (OneFaceResult face in faces.faces)
{
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Face location: {0}, {1}, {2}, {3}", face.face_location.left, face.face_location.top, face.face_location.width, face.face_location.height);
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Gender: {0}, Score: {1}", face.gender.gender, face.gender.score);
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Age Min: {0}, Age Max: {1}, Score: {2}", face.age.min, face.age.max, face.age.score);
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Name: {0}, Score: {1}, Type Heiarchy: {2}", face.identity.name, face.identity.score, face.identity.type_hierarchy);
if(face.face_location != null)
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Face location: {0}, {1}, {2}, {3}", face.face_location.left, face.face_location.top, face.face_location.width, face.face_location.height);
if(face.gender != null)
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Gender: {0}, Score: {1}", face.gender.gender, face.gender.score);
if(face.age != null)
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Age Min: {0}, Age Max: {1}, Score: {2}", face.age.min, face.age.max, face.age.score);
if (face.identity != null)
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Name: {0}, Score: {1}, Type Heiarchy: {2}", face.identity.name, face.identity.score, face.identity.type_hierarchy);
}
}

Expand All @@ -425,10 +429,14 @@ private void OnDetectFacesPost(FacesTopLevelMultiple multipleImages, string cust
Log.Debug("TestVisualRecognition", "\tDetectFaces POST source_url: {0}, resolved_url: {1}", faces.source_url, faces.resolved_url);
foreach (OneFaceResult face in faces.faces)
{
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Face location: {0}, {1}, {2}, {3}", face.face_location.left, face.face_location.top, face.face_location.width, face.face_location.height);
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Gender: {0}, Score: {1}", face.gender.gender, face.gender.score);
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Age Min: {0}, Age Max: {1}, Score: {2}", face.age.min, face.age.max, face.age.score);
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Name: {0}, Score: {1}, Type Heiarchy: {2}", face.identity.name, face.identity.score, face.identity.type_hierarchy);
if (face.face_location != null)
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Face location: {0}, {1}, {2}, {3}", face.face_location.left, face.face_location.top, face.face_location.width, face.face_location.height);
if (face.gender != null)
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Gender: {0}, Score: {1}", face.gender.gender, face.gender.score);
if (face.age != null)
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Age Min: {0}, Age Max: {1}, Score: {2}", face.age.min, face.age.max, face.age.score);
if(face.identity != null)
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Name: {0}, Score: {1}, Type Heiarchy: {2}", face.identity.name, face.identity.score, face.identity.type_hierarchy);
}
}

Expand Down
2 changes: 1 addition & 1 deletion Scripts/Utilities/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static class Resources
public static class String
{
/// <exclude />
public const string VERSION = "watson-developer-cloud-unity-sdk-0.11.0";
public const string VERSION = "watson-developer-cloud-unity-sdk-0.12.0";
/// <exclude />
public const string DEBUG_DISPLAY_QUALITY = "Quality: {0}";
}
Expand Down