-
Hello, Do you have any plans to extend the Theseus installation in Google Colab. The main issue are follows which restricts usage of Theseus on colab.
I would highly appreciate your thoughts on the same. Many thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
mhmukadam
Nov 3, 2022
Replies: 1 comment 7 replies
-
Hi, you can easily install Theseus using the commands below to run in colab: !apt install libsuitesparse-dev
!pip install theseus-ai
import torch
import theseus as th
th.rand_se2(2) # to test The cuda version issue happened recently as torch 1.13 stoped supporting cuda 10.2. We are fixing this in #345 and should be merged soon. |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
mhmukadam
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, you can easily install Theseus using the commands below to run in colab:
The cuda version issue happened recently as torch 1.13 stoped supporting cuda 10.2. We are fixing this in #345 and should be merged soon.