Skip to content

Releases: aicore/eva

Core.ai OS EVA alpha release

09 Jul 06:40
ded115e
Compare
Choose a tag to compare
Pre-release

Core.ai Os is released as a VirtualBox image. This OS helps you to do ML experiments using Jupiter lab. If you are new to python and machine learning, this image will help you start with ML and AI in few minutes.
Prerequisite: Minimum 10GB HDD free space.

  1. Install the Latest oracle virtual box. https://www.virtualbox.org/
  2. Download core.ai os
  3. Then open the virtual box then load this image eva.ova as an appliance.
  4. Boot Eva in VirtualBox
  5. Open browser and type localhost:8888 password:123
  6. Open a new notebook
  7. Do your experiments in opened notebook

Reporting issues

Please use this link for reporting any issues or if you need any assistance.

Hello world example with Eva

We will use google ml trained models to translate hello world to different languages.

Environment setup

  1. Boot eva
  2. open browser and type localhost:8888
  3. Open Notebook - python 3

Import model to notebook

googletrans is an ml-based translation library based on google translate.
Type following commands in the notebook and hit the run button

  1. import sys
  2. !{sys.executable} -m pip install googletrans

Now, lets code

 
  # import tansalation model to notebook
  from googletrans import Translator 
  # Create object of Translator
  translator = Translator() 
  # Replace with language code of your choice to see the magic
  # https://www.w3schools.com/tags/ref_language_codes.asp
  print (translator.translate('Hello World', dest='de').text)