Xin Xiong
Xin Xiong
Please support Windows officially!
I solved this error by using old version of `rpy2` (2.9.4) installed by conda: `conda install rpy2`
According to [the document](https://rpy2.github.io/doc/latest/html/overview.html#requirements), > Running rpy2 on Windows is currently not supported although relative success was recently reported with the lastest in the 3.3.x series. Could you please support...
I fixed this problem after updated `conda` ``` [belter@localhost jupyterhub]$ conda config --add channels conda-forge [belter@localhost jupyterhub]$ conda upgrade conda [belter@localhost jupyterhub]$ source activate jupyterhub-tutorial (jupyterhub-tutorial) [belter@localhost jupyterhub]$ conda install...
Agree @boenrobot
This is an integrated example: ``` def draw_multiple_mol(smiles_list, mols_per_row=4, file_path=None): mols = [] for i in smiles_list: mols.append(Chem.MolFromSmiles(i)) mols_per_row = min(len(smiles_list), mols_per_row) img=Draw.MolsToGridImage(mols, molsPerRow=mols_per_row, subImgSize=(300, 160), useSVG=True) if file_path: with...
I have the same error: ``` Total params: 6,489,634 Trainable params: 6,489,634 Non-trainable params: 0 ____________________________________________________________________________________________________ Using real-time data augmentation. Epoch 1/10 Exception in thread Thread-1: Traceback (most recent call...
The test set is still not working! I'm using the following version: ``` torch 2.2.2 pypi_0 pypi torchdata 0.7.1 pypi_0 pypi torchtext 0.17.2 pypi_0 pypi ``` It constantly throws an...