Animcogn

Results 9 issues of Animcogn

Added cosine similarity face-recognition methods to `api.py` along with unit testing. I did a bunch of facial recognition for a school project and I found that for our use-case, cosine...

Setup a Docker image for easier deployments. I needed it for my application and thought I might as well share it.

Added full text search (`select from where match() against ()`) (as specified [here](https://dev.mysql.com/doc/refman/8.0/en/fulltext-natural-language.html)). Changes include: - added `inNaturalLanguage` expression - added `.against` call - added `match` for use with `where`...

## Description Exposing these constructors is helpful when working with LLVM code which isn't yet part of the C-API. ## Related Issue - #424 - #366 ## Checklist - [x]...

### Description The Electron version specified in `package.json` is `1.8.8`. That version of Electron doesn't have any `darwin-arm64` builds (any M1 mac). Can we upgrade to atleast Electron 11? That's...

# Overview ## Related Issue - #1017 ## Description This PR includes all of the necessary code to introduce code coverage instrumentation into Rusty. It's a large PR with still...

# Overview [AddressSanitizer](https://github.com/google/sanitizers/wiki/AddressSanitizer#introduction) (ASAN) runs as an LLVM pass, which instruments code to detect reading and writing to out of bounds memory addresses at runtime. ## Related Issue - #1062...

**Is your feature request related to a problem? Please describe.** Add [LLVM Code Coverage](https://llvm.org/docs/CoverageMappingFormat.html) support to Rusty ([for use with tools like `llvm-cov`](https://llvm.org/docs/CommandGuide/llvm-cov.html)), so that instrumentation is added to track...

**Is your feature request related to a problem? Please describe.** It would be convenient to have an auto-building docker image with a compiled version of `plc` ready. I have one...