added readme
This commit is contained in:
parent
7af04cc948
commit
6e371aa107
1 changed files with 21 additions and 0 deletions
21
README.md
Normal file
21
README.md
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
# Cemantle Solver
|
||||||
|
|
||||||
|
An intelligent word-guessing assistant that uses Word2Vec embeddings to solve the Cemantle game efficiently.
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
Cemantle is a word association game where you need to guess a target word based on semantic similarity scores. This solver uses Google News Word2Vec embeddings to find words at specific semantic distances from a given starting word.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- **Web Interface**: Access the solver at [csolver.cosmoris.fr](https://csolver.cosmoris.fr)
|
||||||
|
- **Local CLI**: Run directly with `python cemantle.py <word> <score>`
|
||||||
|
- **Docker Support**: Fully containerized for easy deployment
|
||||||
|
|
||||||
|
### Docker Deployment
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
The service will be available at `http://localhost:8018`
|
||||||
Loading…
Reference in a new issue