Releases: comet-ml/kangas
Releases Β· comet-ml/kangas
2.4.7
2.4.5
2.4.4
2.4.3
New in this release:
- Removed
kangas server --root
flag: was not used - Changed the remote strategy for exported files (need more work to make general)
- Updated copyright dates
- Set rows from command line
- Added ability to see large text fields
- Don't crash if image is None
2.4.2
New in this release:
- Added UMAP projection, with docs (use
Embedding(projection="umap")
); requirespip install umap-learn
- Remove status check on debounce for filter bar, in UI
- Put a timeout on downloads (any path that is http or https)
- Fixed two bugs in dg.read_csv(): handle no headers, if converted raises, use None value
- Adjust the size of points in thumbnail scatter plots of embeddings
- Updated notebook
Visualizing_embeddings_in_Kangas.ipynb
- Added
Embedding(scale=True)
for "umap" and "pca"
2.4.1
2.4.0
New in this release:
- New auto dynamic update: a polling system that runs automatically for all DataGrid UIs, checking every 15 seconds if the underlying database has changed. If it has, then it smoothly will update the UI (unless a dialog window, like editing computed columns, is open).
- Removed the timestamp from the URL
- Added new expression function: HISTOGRAM({"Column Name"}, 10) that will return a number for that row representing the value in "Column Name" broken into 10 bins. Useful to group by this value to see the distribution of each bar in a histogram chart.
- Added selectable columns in all Python query APIs. By default, one gets all columns except "row-id". Use select="*" to get all columns, including "row-id". Otherwise, use select=["Column Name1", ...]
- Spellcheck turned off (again) in computed column editor
- Row-id cell shows "N/A" when grouping on another column.
- "About" markdown now automatically turns URLs into links
- Fixed a bug in "kangas upgrade" and "dg.upgrade()"
- Fixed a bug in appending data of wrong type (that was in the Getting Started notebook)
- Fixed loading spinner from flashing, and changing view
- Refactored embedding projector to handle large embedding vectors
2.3.7
New since last release:
- Updated all starting URLs to use datagrid name and timestamp
- Updated all backend endpoints to include timestamp for proper caching
- Dynamic updates is work-in-progress
- Floating point cells are color-mapped. Soon you will be able to pick colormap, or disable, per column
- Values in text columns that have category data now show as colored tags
- Fixes for running in Kaggle notebooks; uses ngrok. show() now support
use_ngrok
option in all environments; requires ngrok api token - All charts (histogram bar, category bar, and embedding projection scatter) now support mouse click or drag to select items in the chart; usable in filter or in computed column expressions
2.3.4
2.3.3
New since last published release:
- Loading indicator for longer load times
- Added
DataGrid.remove_rows()
- Add completions to computed columns expression editor
- Copy and paste from charts for filter or computed columns
- Notify user with important display messages
- New santa example notebook
- Various fixes and enhancements