Max Berrendorf
Max Berrendorf
Hi @giuspillo , would you mind re-opening the ticket with the "bug report" template and fill-in the environment information (e.g., which PyKEEN version)?
With the current `master` branch, I cannot reproduce your observation: ```python from pykeen.pipeline import pipeline from pykeen.triples import TriplesFactory from pykeen.datasets.nations import NATIONS_TEST_PATH, NATIONS_TRAIN_PATH emb_training = TriplesFactory.from_path( NATIONS_TRAIN_PATH, create_inverse_triples=True, )...
https://dev.azure.com/PytorchLightning/compatibility/_build/results?buildId=72651&view=logs&j=fb683405-d979-52da-6de9-2541dff429a6&t=bdee9137-b6d6-59ea-6392-0d699b7aef3e&l=12676 the errors seem to originate from a `tqdm` in Lightning-only code :thinking: ```python-traceback torch.multiprocessing.spawn.ProcessRaisedException: E E -- Process 1 terminated with the following error: Traceback (most recent call last):...
> Seems like TQDM version compatibility issue. Cc: @Borda any updates on this?
> @mberr I am very sorry for the delay, but I ll take look at it this week as we are rolling some more updates 🦦 @Borda no problem -...
This error message looks strange to me: https://github.com/Lightning-AI/ecosystem-ci/actions/runs/3878585128/jobs/6627870005#step:9:11 The respective version is available through pypi: https://pypi.org/project/torch-max-mem/0.0.4/ This one seems to come from `main` branch: https://github.com/Lightning-AI/ecosystem-ci/actions/runs/3878585128/jobs/6627869826#step:12:1
@cthoyt Should I commit generated files?
Hi @nomisto , I remember seeing this error once before on a Windows machine, and I think it was related to overly long paths. Unfortunately, it even occurred after renaming...
@mali-git maybe we can generate some useful overview from it (related to https://github.com/pykeen/pykeen/issues/96 ) For that this would be good to have a table with the used GPU for each...
Hi @Filco306 if you are looking at the validation curves generated by the [`EvaluationLoopTrainingCallback`](https://pykeen.readthedocs.io/en/stable/api/pykeen.training.callbacks.EvaluationLoopTrainingCallback.html#evaluationlooptrainingcallback), ```python if "callbacks" not in config["pipeline"]["training_kwargs"]: config["pipeline"]["training_kwargs"]["callbacks"] = ["evaluation-loop"] if "callback_kwargs" not in config["pipeline"]["training_kwargs"]: config["pipeline"]["training_kwargs"]["callback_kwargs"] =...