Skip to content

Commit

Permalink
GIT: lmao at rdkit having null bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
anmorgunov committed May 31, 2024
1 parent 038e955 commit b38ac0c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy torch rdkit pyyaml
pip install pytest pytest-cov
pip install numpy torch rdkit==2023.09.3 pyyaml
pip install pytest pytest-cov lightning
pip install mypy black isort ruff types-requests types-tqdm types-PyYAML
- name : Run ruff
Expand Down
2 changes: 1 addition & 1 deletion DirectMultiStep/Models/Training.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from typing import Any, Callable, Dict, List, Optional, Tuple, cast

import lightning as pl # type: ignore
import lightning as pl
import numpy as np
import torch
import torch.nn as nn
Expand Down
2 changes: 1 addition & 1 deletion assess_single.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from pathlib import Path
from typing import List, Tuple, cast

import lightning as L # type:ignore
import lightning as L
import rdkit.Chem as Chem # type: ignore
import torch
import yaml
Expand Down
2 changes: 1 addition & 1 deletion train_nosm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from pathlib import Path

import lightning as L # type: ignore
import lightning as L
import torch
from lightning.pytorch.callbacks import ModelCheckpoint, RichModelSummary

Expand Down
2 changes: 1 addition & 1 deletion train_wsm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from pathlib import Path

import lightning as L # type: ignore
import lightning as L
import torch
from lightning.pytorch.callbacks import ModelCheckpoint, RichModelSummary

Expand Down

0 comments on commit b38ac0c

Please sign in to comment.