Prabhjit dhillon
Prabhjit dhillon
Generates text one token at a time. At each step, it requests many (num_samples) candidates for the next single token. Estimates the probability of each potential next token based on...
## Type of change Choose one: ( Feature request) ## Checklist - [ ] I have performed a self-review of my code. - [ ] I have added detailed comments...
## Description of the change ## Motivation ## Type of change Choose one: (Bug fix | Feature request | Documentation | Other) ## Checklist - [x] I have performed a...
… Standardize on camelCase for REST API parameter names - Update README.md to document parameter naming conventions - Create new inline_pdf_example.sh with consistent naming - Fix inconsistent naming in several...
The implementation includes: A new public_data.py module with functions to list, get info about, and fetch datasets Proper input validation and local caching in ~/.movement/public_data Comprehensive unit tests verifying all...
[Mentioned Pr](https://github.com/neuroinformatics-unit/movement/pull/451/files) Bi-directional approach First Stage commit Not yet implemnted - edge cases, i.e. what happens if a point keeps jumping back-and-forth between two positions, in that case it's also...
This PR implements trajectory complexity measures for analyzing animal movement paths. ### New features: - Added trajectory_complexity.py module with the following functions: - `compute_straightness_index`: Ratio of Euclidean distance to path...
movement/trajectory_complexity.py - The module containing the compute_straightness_index function tests/test_unit/test_trajectory_complexity.py - Unit tests for the straightness index examples/trajectory_straightness.py - Example movement/__init__.py - Updated to expose the new function This is the...
In the enhance/improve-error-testing branch, I have tried to improve the validation of error messages in tests by adding a check_error_message helper function, updating existing tests to use the match parameter...
This PR adds a new track fusion module that implements multiple methods for combining tracking data from different sources to produce more accurate trajectories. This addresses issue #271. Key features:...