Skip to content

Commit 2dca2e4

Browse files
Merge pull request #168 from watson-developer-cloud/feature-releasePrep-0.12.0
Feature release prep 0.12.0
2 parents 1da8659 + f5d687d commit 2dca2e4

File tree

5 files changed

+26
-18
lines changed

5 files changed

+26
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
Change Log
22
==========
33
## Version 0.12.0
4-
_2016_10_27_
4+
_2016-11-4_
55
* New: Added streaming `SpeechToText` example.
66
* New: Abstraction for `Personality Insights V3`
77

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

1212
## Version 0.10.0
13-
_2016_09_23_
13+
_2016-09-23_
1414

1515
* New: Added `similarity search` to the `Visual Recognition` service.
16-
* Fix: `Touch Widget` improvmements.
16+
* Fix: `Touch Widget` improvements.
1717
* Fix: Disabled 3rd Party plugin warnings.
1818
* Fix: Removed `Conversation` Message overload method that takes only input and conversationID.
1919
* Fix: Rewrote `Conversation` example script to show how to create MessageRequest object.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1559,7 +1559,7 @@ private void OnGetCombinedData(CombinedCallData combinedData, string data)
15591559

15601560

15611561
### Personality Insights
1562-
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.
1562+
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.
15631563

15641564
```cs
15651565
PersonalityInsights m_personalityInsights = new PersonalityInsights();

Scripts/UnitTests/TestSpeechToText.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ public override IEnumerator RunTest()
208208
// yield return null;
209209

210210
// DeleteCustomization
211-
Log.Debug("TestSpeechToText", "********** Attempting to to delete customization {0}", m_CreatedCustomizationID);
212-
m_SpeechToText.DeleteCustomization(HandleDeleteCustomization, m_CreatedCustomizationID);
213-
while (!m_DeleteCustomizationTested)
214-
yield return null;
211+
//Log.Debug("TestSpeechToText", "********** Attempting to to delete customization {0}", m_CreatedCustomizationID);
212+
//m_SpeechToText.DeleteCustomization(HandleDeleteCustomization, m_CreatedCustomizationID);
213+
//while (!m_DeleteCustomizationTested)
214+
// yield return null;
215215

216216
yield break;
217217
}

Scripts/UnitTests/TestVisualRecognition.cs

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -399,10 +399,14 @@ private void OnDetectFacesGet(FacesTopLevelMultiple multipleImages, string custo
399399
Log.Debug("TestVisualRecognition", "\tDetectFaces GET source_url: {0}, resolved_url: {1}", faces.source_url, faces.resolved_url);
400400
foreach (OneFaceResult face in faces.faces)
401401
{
402-
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);
403-
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Gender: {0}, Score: {1}", face.gender.gender, face.gender.score);
404-
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Age Min: {0}, Age Max: {1}, Score: {2}", face.age.min, face.age.max, face.age.score);
405-
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Name: {0}, Score: {1}, Type Heiarchy: {2}", face.identity.name, face.identity.score, face.identity.type_hierarchy);
402+
if(face.face_location != null)
403+
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);
404+
if(face.gender != null)
405+
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Gender: {0}, Score: {1}", face.gender.gender, face.gender.score);
406+
if(face.age != null)
407+
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Age Min: {0}, Age Max: {1}, Score: {2}", face.age.min, face.age.max, face.age.score);
408+
if (face.identity != null)
409+
Log.Debug("TestVisualRecognition", "\t\tDetectFaces GET Name: {0}, Score: {1}, Type Heiarchy: {2}", face.identity.name, face.identity.score, face.identity.type_hierarchy);
406410
}
407411
}
408412

@@ -425,10 +429,14 @@ private void OnDetectFacesPost(FacesTopLevelMultiple multipleImages, string cust
425429
Log.Debug("TestVisualRecognition", "\tDetectFaces POST source_url: {0}, resolved_url: {1}", faces.source_url, faces.resolved_url);
426430
foreach (OneFaceResult face in faces.faces)
427431
{
428-
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);
429-
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Gender: {0}, Score: {1}", face.gender.gender, face.gender.score);
430-
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Age Min: {0}, Age Max: {1}, Score: {2}", face.age.min, face.age.max, face.age.score);
431-
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Name: {0}, Score: {1}, Type Heiarchy: {2}", face.identity.name, face.identity.score, face.identity.type_hierarchy);
432+
if (face.face_location != null)
433+
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);
434+
if (face.gender != null)
435+
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Gender: {0}, Score: {1}", face.gender.gender, face.gender.score);
436+
if (face.age != null)
437+
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Age Min: {0}, Age Max: {1}, Score: {2}", face.age.min, face.age.max, face.age.score);
438+
if(face.identity != null)
439+
Log.Debug("TestVisualRecognition", "\t\tDetectFaces POST Name: {0}, Score: {1}, Type Heiarchy: {2}", face.identity.name, face.identity.score, face.identity.type_hierarchy);
432440
}
433441
}
434442

Scripts/Utilities/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static class Resources
6262
public static class String
6363
{
6464
/// <exclude />
65-
public const string VERSION = "watson-developer-cloud-unity-sdk-0.11.0";
65+
public const string VERSION = "watson-developer-cloud-unity-sdk-0.12.0";
6666
/// <exclude />
6767
public const string DEBUG_DISPLAY_QUALITY = "Quality: {0}";
6868
}

0 commit comments

Comments
 (0)