Skip to content

Tag: postgresql

Track to database, artifacts to specific destination

I am running mlflow ui and PostgreSQL db in docker compose. Mlflow UI container runs like this: mlflow ui –backend-store-uri “postgresql+psycopg2://postgres:passw0rd@database:5432/postgres” –host 0.0.0.0 Then I run my models locally from jupyter, e.g. Everything works fine – expe…

How to Update in sqlalchemy using objects?

I have a student table in postgres with the following columns Studentid | Student_name | Student_division I am using sql alchemy and have modeled it as How to update? This doesnt work. Answer you need to commit the changes and remove the session.add(x) just keep session.commit()