Code Monkey home page Code Monkey logo

prometheus-kube's People

Contributors

akshat271098 avatar s1lv3rj1nx avatar saswat0 avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

cozek s1lv3rj1nx

prometheus-kube's Issues

packing_api not working as intended.

  1. uvicorn server not working as intended.
(iisc) [azureuser@iisc-proj-vm packing_api]$ uvicorn packing:app --host localhost
/home/azureuser/prometheus-kube/packing_api/rl_train/gym-packing/gym_packing/envs/packing_env.py:77: RuntimeWarning: divide by zero encountered in divide
  data = data / self.max_vals
/home/azureuser/prometheus-kube/packing_api/rl_train/gym-packing/gym_packing/envs/packing_env.py:77: RuntimeWarning: overflow encountered in divide
  data = data / self.max_vals
/home/azureuser/prometheus-kube/packing_api/rl_train/gym-packing/gym_packing/envs/packing_env.py:77: RuntimeWarning: invalid value encountered in divide
  data = data / self.max_vals
/home/azureuser/prometheus-kube/packing_api/rl_train/gym-packing/gym_packing/envs/packing_env.py:99: RuntimeWarning: overflow encountered in cast
  self.state = np.vstack(
Traceback (most recent call last):
  File "/home/azureuser/.conda/envs/iisc/bin/uvicorn", line 8, in <module>
    sys.exit(main())
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/click/core.py", line 1130, in __call__
    return self.main(*args, **kwargs)
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/click/core.py", line 1055, in main
    rv = self.invoke(ctx)
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/click/core.py", line 1404, in invoke
    return ctx.invoke(self.callback, **ctx.params)
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/click/core.py", line 760, in invoke
    return __callback(*args, **kwargs)
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/uvicorn/main.py", line 404, in main
    run(
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/uvicorn/main.py", line 569, in run
    server.run()
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/uvicorn/server.py", line 60, in run
    return asyncio.run(self.serve(sockets=sockets))
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/asyncio/runners.py", line 44, in run
    return loop.run_until_complete(main)
  File "uvloop/loop.pyx", line 1517, in uvloop.loop.Loop.run_until_complete
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/uvicorn/server.py", line 67, in serve
    config.load()
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/uvicorn/config.py", line 477, in load
    self.loaded_app = import_from_string(self.app)
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/uvicorn/importer.py", line 21, in import_from_string
    module = importlib.import_module(module_str)
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 843, in exec_module
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "/home/azureuser/prometheus-kube/packing_api/./packing.py", line 5, in <module>
    from rl import rl_pack
  File "/home/azureuser/prometheus-kube/packing_api/./rl.py", line 31, in <module>
    model = MaskablePPO.load(path, env=env)
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/stable_baselines3/common/base_class.py", line 782, in load
    check_for_correct_spaces(env, data["observation_space"], data["action_space"])
  File "/home/azureuser/.conda/envs/iisc/lib/python3.8/site-packages/stable_baselines3/common/utils.py", line 226, in check_for_correct_spaces
    raise ValueError(f"Observation spaces do not match: {observation_space} != {env.observation_space}")
ValueError: Observation spaces do not match: Box([[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]], [[1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]], (4, 5), float32) != Box([[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]], [[1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1.]], (16, 5), float32)
  1. Path to model is incorrect in rl.py in packing API ?
    PATH = "rl_train/models/best_model"

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.