Sharvil Kekre
Sharvil Kekre
```python import ( "fmt" "strings" // "errors" "github.com/pkg/browser" "github.com/spf13/cobra" yt "github.com/knadh/go-get-youtube/youtube" ) func youtubeDownload(url string) error { video, err := yt.Get(url) if err != nil { return err } options...
**Description of feature/enhancement** Currently the test for the KMeans algorithm is just making sure the number of clusters created is accurate. https://github.com/skekre98/NBA-Search/blob/7583cb5224c2f741121d6e59d92b580e83809a06/test.py#L24 This is not an ideal way of checking...
**Description of feature/enhancement** Implement _TreeBuilder_ in `../lab/tree_builder.py`. This structure should act like a BST for now with left child being less than parent and right child being greater than parent....
**Describe the bug** `test_get_adv_stats` is failing, seems to be from a missing div when scraping advanced stats. **To Reproduce** Steps to reproduce the behavior: 1. Setup the environment with `./setup.sh`...
**Description of feature/enhancement** This function should create the optimal clusters via agglomerative clustering in the _ClusterStore_. **Description of implementation** https://github.com/skekre98/NBA-Search/blob/0564a752c77a7c420890c44e6873c53111251fe5/inference/cluster_store.py#L78 There is likely an elegant way of doing this with...