-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error running on googlecolab #162
Comments
Google Colab has updated the Python version to 3.11, but fairseq does not support this version. Use this to upgrade fairseq:
|
i did it but when i run it it tells me te restart the session and then if i do everyting is lost where do i put that code in wish part and what should i remove : |
There is no need to restart the environment; you can skip this step. However, you might need to update other packages as well, since many of them do not support Python 3.11 (although everything worked fine during the test run). You can insert this code anywhere, or create a separate cell and run it after the "Install requirements" cell, or insert it at the very bottom of the "Install requirements" cell itself. |
I’m facing the same issue as well. Do you happen to have a more detailed solution for me? I’m new to this field. |
Use this notebook, everything seems to work great here: |
Thank you this is great. but i have a new error agin |
In Google Colab, there is a menu at the top. Find « If the error persists after performing these actions, it means you have reached the maximum quota of 5 hours per day for using Colab. In this case, you have two options: switch to another Google account or wait for 12–24 hours. |
@Jihad3336 @ninne120 If you want a more seamless solution with more features you can also check out the notebook for my fork of this project at https://github.com/JackismyShephard/ultimate-rvc 😄 |
This no longer works. [W:onnxruntime:Default, onnxruntime_pybind_state.cc:921 CreateExecutionProviderInstance] Failed to create CUDAExecutionProvider. Please reference https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html#requirementsto ensure all dependencies are met. |
Use ultimate rvc |
on google collab it usually works just fine but now when running the last cell it gives this error : Timer: 00:09:48Traceback (most recent call last):
File "/content/HRVC/src/webui.py", line 10, in
from main import song_cover_pipeline
File "/content/HRVC/src/main.py", line 22, in
from rvc import Config, load_hubert, get_vc, rvc_infer
File "/content/HRVC/src/rvc.py", line 5, in
from fairseq import checkpoint_utils
File "/usr/local/lib/python3.11/dist-packages/fairseq/init.py", line 20, in
from fairseq.distributed import utils as distributed_utils
File "/usr/local/lib/python3.11/dist-packages/fairseq/distributed/init.py", line 7, in
from .fully_sharded_data_parallel import (
File "/usr/local/lib/python3.11/dist-packages/fairseq/distributed/fully_sharded_data_parallel.py", line 10, in
from fairseq.dataclass.configs import DistributedTrainingConfig
File "/usr/local/lib/python3.11/dist-packages/fairseq/dataclass/init.py", line 6, in
from .configs import FairseqDataclass
File "/usr/local/lib/python3.11/dist-packages/fairseq/dataclass/configs.py", line 1104, in
@DataClass
^^^^^^^^^
File "/usr/lib/python3.11/dataclasses.py", line 1232, in dataclass
return wrap(cls)
^^^^^^^^^
File "/usr/lib/python3.11/dataclasses.py", line 1222, in wrap
return _process_class(cls, init, repr, eq, order, unsafe_hash,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/dataclasses.py", line 958, in _process_class
cls_fields.append(_get_field(cls, name, type, kw_only))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/dataclasses.py", line 815, in _get_field
raise ValueError(f'mutable default {type(f.default)} for field '
ValueError: mutable default <class 'fairseq.dataclass.configs.CommonConfig'> for field common is not allowed: use default_factory
Timer: 00:09:50
The text was updated successfully, but these errors were encountered: