Skip to content

Commit

Permalink
Remove hydra nevergrad sweeper as it doesn't seem to be supported sin…
Browse files Browse the repository at this point in the history
…ce 2022 and causing problems
  • Loading branch information
jloveric committed May 19, 2024
1 parent 56b39e0 commit 1c72d4c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and
```
poetry add high-order-implicit-representation
```
if you run into problems installing triton with poetry, this is a hack I've had to
do for certain packages
```
poetry shell
pip install triton
```
# Implicit Representation of Images

Train a model
Expand Down
2 changes: 1 addition & 1 deletion examples/text_to_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
logging.getLogger().setLevel(logging.DEBUG)


@hydra.main(config_path="../config", config_name="generative_config")
@hydra.main(config_path="../config", config_name="generative_config", version_base="1.3")
def run_implicit_images(cfg: DictConfig):

logger.info(OmegaConf.to_yaml(cfg))
Expand Down
7 changes: 2 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,17 @@ license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
hydra-core = "^1.2.0"
Pillow = "^9.1.1"
matplotlib = "^3.5.2"
scikit-image = "^0.19.3"
omegaconf = "^2.2.2"
hydra-nevergrad-sweeper = "1.3.0.dev0"
torch-optimizer = "^0.3.0"
torchsummary = "^1.5.1"
high-order-layers-torch = "^2.4.1"
torchvision = "^0.16.2"
pytorch-lightning = "^2.1.3"
pandas = "^2.2.2"
fastparquet = "^2024.2.0"
sentence-transformers = "^2.7.0"
numpy = "^1.26.4"
pillow = "^10.3.0"
high-order-layers-torch = "^2.4.2"

[tool.poetry.dev-dependencies]
black = "^22.3.0"
Expand Down

0 comments on commit 1c72d4c

Please sign in to comment.