File tree Expand file tree Collapse file tree 4 files changed +22
-12
lines changed
utils/visualization_tools/file_comparison_app Expand file tree Collapse file tree 4 files changed +22
-12
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ __pycache__/
1010** ubyte **
1111* .mp4
1212* .mp3
13+ ** neptune_downloads /
1314
1415# Logs
1516* .log
Original file line number Diff line number Diff line change @@ -23,24 +23,35 @@ SaaS users can try the hosted version of the app with zero local setup: [![Open
2323### Local version
2424
25251 . Clone the repository
26- 2 . Install dependencies :
26+ 2 . Navigate to the app directory :
2727
2828 ``` bash
29- pip install -r utils/visualization_tools/file_comparison_app/requirements.txt
29+ cd utils/visualization_tools/file_comparison_app
3030 ```
3131
32- 3 . Run the Streamlit app :
32+ 3 . Install dependencies :
3333
3434 ``` bash
35- streamlit run utils/visualization_tools/file_comparison_app/file_comparison_app.py
35+ pip install -Uq -r requirements.txt
3636 ```
3737
38- 4 . Open your browser and navigate to the provided URL (usually ` http://localhost:8501 ` )
38+ 4 . Run the Streamlit app:
39+
40+ ``` bash
41+ streamlit run file_comparison_app.py
42+ ```
43+
44+ 5 . Open your browser and navigate to the provided URL (usually ` http://localhost:8501 ` )
3945
4046---
4147
4248## Changelog
4349
50+ ### Version 0.1.2 (2025-10-16)
51+
52+ - Fixed logo path to be relative to the app directory
53+ - Fixed requirements to be more specific
54+
4455### Version 0.1.1 (2025-10-10)
4556
4657- Fixed handling of Neptune API key and project name
Original file line number Diff line number Diff line change 66import pandas as pd
77import streamlit as st
88
9- __version__ = "0.1.1 "
9+ __version__ = "0.1.2 "
1010
1111# TODO: Support runs mode
1212# TODO: Add support for audio and html
2121except ImportError :
2222 NEPTUNE_AVAILABLE = False
2323
24- _LOGO_PATH = "utils/visualization_tools/file_comparison_app/ assets/neptune_ai_signet_color.png"
24+ _LOGO_PATH = Path ( __file__ ). parent . joinpath ( " assets/neptune_ai_signet_color.png"). absolute ()
2525
2626# Configure page
2727st .set_page_config (
Original file line number Diff line number Diff line change 1- matplotlib >= 3.5.0
2- neptune-query >= 1.7.0
3- pandas >= 1.5.0
4- pathlib2 >= 2.3.0
5- streamlit >= 1.50.0
1+ neptune-query >= 1.7.0 ,< 2.0.0
2+ pandas >= 2.3.3 ,< 3.0.0
3+ streamlit >= 1.50.0 ,< 2.0.0
You can’t perform that action at this time.
0 commit comments