Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
renan-souza committed Jan 13, 2025
1 parent c381ffa commit ce9b8c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,11 @@ clean:
find . -type f -name "*.pth" -exec rm -f {} \; || true
find . -type f -name "mlflow.db" -exec rm -f {} \; || true
find . -type d -name "mlruns" -exec rm -rf {} \; 2>/dev/null || true
find . -type d -name "mlruns" -exec rm -rf {} \; 2>/dev/null || true
find . -type d -name "__pycache__" -exec rm -rf {} \; 2>/dev/null || true
find . -type d -name "*tfevents*" -exec rm -rf {} \; 2>/dev/null || true
find . -type d -name "*output_data*" -exec rm -rf {} \; 2>/dev/null || true
find . -type f -name "*nohup*" -exec rm -rf {} \; 2>/dev/null || true
# sphinx-build -M clean docs docs/_build This needs to be fixed.
sphinx-build -M clean docs docs/_build This needs to be fixed.

# Build the HTML documentation using Sphinx
.PHONY: docs
Expand Down
2 changes: 1 addition & 1 deletion examples/llm_complex/llm_test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def all():
write_log(f"\n\nStarting for combination {i}/{len(combinations)}: {config}")

try:
success = run_test(max_runs=5, config=config)
success = run_test(max_runs=3, config=config)
if not success:
write_log(str(i) + "--> " + str(config))
sys.exit(1)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies = [
"msgpack",
"omegaconf",
"pandas",
"psutil",
"psutil>=6.1.1",
"py-cpuinfo",
"redis",
"requests",
Expand Down Expand Up @@ -64,13 +64,13 @@ mlflow = ["mlflow-skinny", "SQLAlchemy", "alembic", "watchdog"]
nvidia = ["nvidia-ml-py"]
tensorboard = ["tensorboard", "tensorflow", "tbparse"]
dev = [
"flowcept[docs]",
"jupyterlab",
"nbmake",
"pika",
"pytest",
"ruff",
"pyyaml",
"psutil>=6.1.1"
]
# Torch and some other ml-specific libs, only used for dev purposes, require the following specific versions.
ml_dev = [
Expand Down

0 comments on commit ce9b8c8

Please sign in to comment.