This repository has been archived by the owner on Apr 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #234 from h2oai/develop
Release 1.1.3
- Loading branch information
Showing
31 changed files
with
722 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,14 @@ If you're an Open Source community member, you can contact H2O using one of the | |
- Send an e-mail message directly to <a href="mailto:[email protected]">[email protected]</a> | ||
- Ask your question on the [H2O Community](https://community.h2o.ai/spaces/540/index.html) site (create an account if necessary) | ||
|
||
## v1.1.3 Changes | ||
|
||
- [STEAM-567] Updated Prediction Service UI to reflect DeepWater support | ||
- [STEAM-578] Added support for importing deploying DeepWater models | ||
- [STEAM-579] Added a default limit for CLI items to 10000 | ||
- [STEAM-504] Modify existing permissions from UMS screen | ||
- [STEAM-559] Prediction Service now allows binary input (images, audio, etc...) | ||
|
||
## v1.1.2 Changes | ||
|
||
- [STEAM-574] Fixes missing protocol in Cluster listing addresses | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
rm -f example.war | ||
|
||
curl -X POST \ | ||
--form [email protected] \ | ||
--form [email protected] \ | ||
--form [email protected] \ | ||
localhost:55000/makewar > example.war | ||
|
||
if [ -s example.war ] | ||
then | ||
echo "Created example.war" | ||
echo "Run with run-example.sh" | ||
else | ||
echo "Failed to build example.war" | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
java -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG -jar ../jetty-runner-8.1.14.v20131031.jar --port 55001 example.war |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "Starting prediction service on port 55001" | ||
echo "" | ||
|
||
java -jar ../jetty-runner-8.1.14.v20131031.jar --port 55001 example.war | ||
|
26 changes: 26 additions & 0 deletions
26
prediction-service-builder/examples/deepwater/test-example.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/usr/bin/env bash | ||
|
||
|
||
curl -X POST \ | ||
--form [email protected] \ | ||
--form abc=def \ | ||
--form data='{Dest: SFO, Orig: JFK}' \ | ||
http://localhost:55001/predictbinary | ||
|
||
echo "test1 bird" | ||
|
||
curl -X POST \ | ||
--form [email protected] \ | ||
http://localhost:55001/predictbinary | ||
|
||
echo "test2 dog" | ||
|
||
curl -X POST \ | ||
--form [email protected] \ | ||
http://localhost:55001/predictbinary | ||
|
||
echo "url of dog" | ||
|
||
#curl -X POST \ | ||
#--form C1="https://c1.staticflickr.com/1/225/515776742_bce2e6dbea_d.jpg" \ | ||
#http://localhost:55001/predictbinary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.