Releases: aicore/eva
Releases · aicore/eva
Core.ai OS EVA alpha 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.
- Install the Latest oracle virtual box. https://www.virtualbox.org/
- Download core.ai os
- Then open the virtual box then load this image
eva.ova
as an appliance. - Boot Eva in VirtualBox
- Open browser and type localhost:8888 password:123
- Open a new notebook
- 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
- Boot eva
- open browser and type localhost:8888
- 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
import sys
!{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)