Google basic Blue score - automl

We are working on a project to train a Auto ML models for each language supported by Google. We would like to know the basic Blue score set by Google NMT for all the supported languages. (Not only Auto ML supported languages, but also the V2, V3 supported languages)

Related

NEAR API with Python

A community member would like to utilise Python to integrate aspects of their application with NEAR. Would it be possible to build an application on NEAR using Python? Can the NEAR API be used with Python?
With NEAR you build on 2 fronts:
"Inside": Contracts (to write code that runs on-chain and changes state in the system)
"Outside": API (to create dApps that communicate with NEAR)
Contracts
We currently support two languages:
Rust (near-sdk-rs)
and AssemblyScript (near-sdk-as)
You can find more examples of contracts written in both of these languages in our NEAR Examples GitHub org, many of which are running live on near.dev
In the future we will support any language that we (or our community) decides to enable from a pretty long list where “enable” means building out the sdk like near-sdk-rs and near-sdk-as linked above.
API
We currently have a JSON RPC API that you can use from any language (including Python) as well as a convenient wrapper for JavaScript developers called near-api-js. Again, we (or our community) can decide to build more convenient wrappers for any other language we want to support, including Go, Java, C#, Python, Ruby, etc
As a side note, if someone in the community is interested in Python specifically, there’s a ton of it currently being used to do things like run tests (nearcore pytest), manage builds (nearcore scripts) and deploy nodes (nearup) as well as simulate some of the on-chain stuff like the Runtime
I use py-near
https://pypi.org/project/py-near/
built-in transactions with FT
fully asynchronous library
good documentation
built-in transfers NEAR/Ft by SMS
multiple RPC node support

Classifying images with Vision and CoreML in macOS

I have trained IBM Watson to recognize objects of interest. Since remote execution isn’t a requirement I want to export to .mlmodel with the tool provided and run in macOS.
Unfortunately learning Swift and macOS development isn’t a requirement either. It is possible to invoke Vision directly from the command line or from a scripting language? As alternative anybody knows a skeleton of macOS app to run Vision over a list of files and obtain classification scores in tabular form? Thanks.
The code mentioned in this article uses a downloaded Core ML model in an iOS App through Watson SDK.
Additionally, Here’s a code sample that uses Watson Visual Recognition and Core ML to classify images. The workspace has two projects
Core ML Vision Simple: Classify images locally with Visual Recognition.
Core ML Vision Custom: Train a custom Visual Recognition model for more specialized classification.
Refer the code and instructions here
Also, there’s a starter kit that comes with Watson Visual Recognition preconfigured with Core ML - https://console.bluemix.net/developer/appledevelopment/starter-kits/custom-vision-model-for-core-ml-with-watson
You can also load the mlmodel into Python and use the coremltools package to make predictions. I wouldn't use that in a production environment, but it's OK to get something basic up and running.

Roku Right-to-Left Language support

When internationalizing a Roku application, does the platform provide any built in support for RTL languages? With Android for example, you can define your UI element attributes to use start/end alignments, which are then aligned automatically (rtl, ltr) based on the users language setting.
I'm wondering if Roku provides anything like Android with regards to RTL support?
Edit: nevermind, looks like Roku only supports 4 languages right now, none of which are right to left

3D engine collision detection modelimport

I am about to find a 3d engine which is capable of importing 3d models, detect their collisions and support joints. It's needed for an interactive animation and no platform is specified jet. I would prefer to code Javascript or AS3, but I think to be able to handle this with Java too.
Does Away3d support this? Is their a plain 3D collision detection framework I could use additionally to it? Which is the easiest Java Framework and which creates best Quality?
BTW.:
Proprietary Frameworks might also be an possibility, but I just do not any.
Greetings philipp
Away3D has Awayphysics library that is alchemy port of C++ engine and show very good performance. Away3D has clean readable source code and documentation + good set of example projects. It has 3ds max plugin that can export scene and generate code to render it. Support popular formats like 3ds, obj... and You can write importer plugin for own format. All so developers are pretty cool guys that answer questions on forum :)
For JavaScript the most popular engine is three.js Look what it can do.
General thoughts:
WebGL support isn't good at this time(sometimes it depends not only on user browser but all so on drivers) and You will need to deal with cross browser headache. Flash isn't supported on IOS and get kicked more and more from device browsers. But there is cross-platform adobe air for standalone apps.
Javascript, in my opinion, isn't good for writing such projects and its debugging can cause permanent brain damage. WebGL shader language is GLSL that has nice C-like syntax. Ordinary Flash shaders are written on assembler but You may try pixelbender3d. At this time Flash shaders more limited than WebGL(for example you can't fetch texture in vertex shader) but it's done to make Flash more compatible and it's not a problem for most cases. WebGL is tightly integrated with page.
If you want java WebGL and like pain try GWT 3D engines or gwt-elemental and there is tree-js port at early stage.
x3dom is declarative WebGL 3D engine with fallback to Flash it is ez but pretty limited and unstable.

What superseded XYGraph.dll?

I am trying to get some charting and visualizations going in F#. Unfortunately, the book I am using refers to a lot of .dll files that have been superseded with the advent of Windows 7. I am using Visual Studio 2010, F# 2.0.
What would be a useful replacement for "XYGraph.dll" for doing some simple graphs of mathematical functions?
Searching MSDN does not yield any results.
I'm not familiar with "XYGraph.dll", so I'm not sure what were all the features that it had.
However, there is a MSDN section that discusses Visualizing Data with .NET Charts in F#. It covers .NET Chart Controls (available in .NET 4.0 and as a sperate download for .NET 3.5) and FSharpChart library, which is an F#-friendly wrapper for this library (as well as some other options like Excel).
The FSharpChart library seems to be the standard (and the easiest way) to visualize data from F#.
The MSDN articles include introduction and visualization of financial data.
The F# team blog also has a few articles about the library.
Additional resources & downloads can be found in Carl Nolan's blog who has been contributing to the library and manages recent releases.
As far as I know, the only big limitation of .NET Chart Controls (and FSharpChart) is that they don't work in Silverlight. I'm not sure if that was supported by XYGraph.dll
You probably want to use the new Data Visualization stuff in .NET 4. I described how to get a parametric plot in the blog post here.

Resources