Code Monkey home page Code Monkey logo

elyra-ai / elyra Goto Github PK

View Code? Open in Web Editor NEW
1.8K 43.0 328.0 114.7 MB

Elyra extends JupyterLab with an AI centric approach.

Home Page: https://elyra.readthedocs.io/en/stable/

License: Apache License 2.0

Makefile 0.68% Python 72.89% Dockerfile 0.25% TypeScript 20.33% CSS 2.43% JavaScript 0.31% Shell 0.33% Jupyter Notebook 1.43% Rebol 0.01% Jinja 1.27% R 0.08%
notebooks notebook-jupyter jupyterlab jupyterlab-extensions ai machine-learning pipelines kubeflow-pipelines python elyra

elyra's People

Contributors

19690ao avatar ajbozarth avatar akchinstc avatar bourdakos1 avatar casassg avatar dependabot[bot] avatar fresende avatar hema-mathiyazhagan avatar karlaspuldaro avatar kevin-bates avatar kiersten-stokes avatar kjdoyle avatar lresende avatar marthacryan avatar mudspringhiker avatar ptitzler avatar rkpattnaik780 avatar romeokienzler avatar salonee13 avatar samali0996 avatar sandhya-nayak avatar sanika93 avatar thesuperzapper avatar tlzhu19 avatar typhoonzero avatar vabarbosa avatar vna818-rpi avatar wenjun93 avatar yuhuishi-convect avatar zeusorionibm avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

elyra's Issues

Python runner does not support imports from same folder

Add a init.py to a notebook folder
Create a file helloworld.py with the following contents

class Helloworld:
    def say_hi(self, name):
        print('Hi {}'.format(name))

Create a notebook and import that file (it works)

from helloworld import Helloworld
a = Helloworld()
a.say_hi('John')

Do the same from a python file

Error : ModuleNotFoundError - No module named 'helloworld'

When you try from .helloworld import Helloworld you will get

Error : ModuleNotFoundError - No module named '__main__.util'; '__main__' is not a package

Python runner does not show result output

The following sample code results in nothing when running from python runner

import io
import requests
import pandas as pd

def df_from_url(url):
    data = requests.get(url).content
    df = pd.read_csv(io.StringIO(data.decode('utf-8')))
    return df

df = df_from_url('http://samplecsvs.s3.amazonaws.com/Sacramentorealestatetransactions.csv')
df['price'].mean()

[Imported PR] Enable pipelines to be saved / opened

  • Adds a button to save a current pipeline, which opens a dialog to ask for the filename (doesn't check for validity of filename yet). Adds .pipeline to the filename then saves to the jupyterlab filesystem
  • Adds a button to open a pipeline - must have a file selected in the filebrowser. Currently doesn't check for validity of filename / content.
  • Adds a button to clear the canvas

[Imported PR] Initial changes for ai-workspace build

  • switched over to lerna to manage packages
  • relocated extension over to packages dir
  • ensure lerna is installed "npm install -g lerna" and then run "lerna bootstrap" to install scheduler extension which should then pull in the jupyterlab packages as well.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.