GithubHelp home page GithubHelp logo

Comments (6)

oegedijk avatar oegedijk commented on May 8, 2024

I see that you import the custom tabs from the custom_tabs module. However it seems that when you generated the dashboard.yaml these were actually declared in __main__.

So you can either manually change the modules to custom_tabs in the dashboard.yaml, or generate the yaml something like this

from explainerdashboard import ExplainerDashboard
from custom_tabs import *

explainer = ClassifierExplainer(...)
db = ExplainerDashboard(explainer, [CustomDescriptiveTab, CustomFeatImpTab, CustomWhatIfTab])
db.to_yaml("dashboard.yaml")

from explainerdashboard.

hkoppen avatar hkoppen commented on May 8, 2024

True, thanks! I did update the yaml-file, which is correctly reflecting the module now. However, I face another error when running waitress-serve --port=8060 "dashboard:create_c_app":

Serving on http://...
ERROR:waitress:Exception while serving /
Traceback (most recent call last):
  File "c:\...\venv\lib\site-packages\waitress\channel.py", line 350, in service
    task.service()
  File "c:\...\venv\lib\site-packages\waitress\task.py", line 171, in service
    self.execute()
  File "c:\...\venv\lib\site-packages\waitress\task.py", line 441, in execute
    app_iter = self.channel.server.application(environ, start_response)
TypeError: create_c_app() takes 0 positional arguments but 2 were given

where dashboard.py is

from explainerdashboard import ExplainerDashboard
from custom_tabs import *
from waitress import serve


def create_c_app():
    db = ExplainerDashboard.from_config("dashboard.yaml")
    app = db.flask_server()
    return app

if __name__ == "__main__":
    serve(create_c_app(), host='0.0.0.0', port=8050)

Note that running python dashboard.py is working fine (which was the case even before i fixed the yaml-file!)

from explainerdashboard.

oegedijk avatar oegedijk commented on May 8, 2024

I have never used waitress, but would this work:

from explainerdashboard import ExplainerDashboard
from custom_tabs import *
from waitress import serve


def create_c_app():
    db = ExplainerDashboard.from_config("dashboard.yaml")
    app = db.flask_server()
    return app

app = create_c_app()

if __name__ == "__main__":
    serve(app, host='0.0.0.0', port=8050)

And then from the command line:

waitress-serve --port=8080 dashboard:app

from explainerdashboard.

hkoppen avatar hkoppen commented on May 8, 2024

Yes, that's the way to go. Apparently I did follow other examples too blindly, thanks for your support!

For future reference: it suffices to use

from explainerdashboard import ExplainerDashboard

app = ExplainerDashboard.from_config("dashboard.yaml").flask_server()

and then run waitress-serve --port=8070 dashboard:app in command line (using a suitable port).
Which, tbh, is exactly what is written here: https://explainerdashboard.readthedocs.io/en/latest/deployment.html#storing-explainer-and-running-default-dashboard-with-gunicorn :D (btw, there is a typo: "ExpalinerDashboard")

from explainerdashboard.

oegedijk avatar oegedijk commented on May 8, 2024

Nice one-liner indeed :)

from explainerdashboard.

oegedijk avatar oegedijk commented on May 8, 2024

And thanks for pointing out waitress - seems like a cool library, will see if I can build it into explainerdashboard itself.

from explainerdashboard.

Related Issues (20)

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.