Introducing our service that utilizes the power of neural networks to generate unique and personalized clothing styles for you. Our service takes into account your preferences to create styles that perfectly suit your individual taste and needs. With the help of our advanced algorithms, we can search through a vast selection of online shops and recommend clothing items that match your generated style, saving you time and effort in the shopping process. Our service combines the best of technology and fashion to provide you with a seamless and enjoyable shopping experience. Try it out today and revolutionize the way you shop for clothes!
Our service consists of 2 parts: generation engine and search engine.
In development.
For a search engine we solve two task: detection of a clothing item on image and metric learning task, on a database of images from DeepFashion 2 dataset. In fututre we plan to implement parsing online stores and showing users links to existing webpages with clothes.
- Input image file size 5 MB maximum
- The minimum image dimensions is 80 pixels for both height and width
- The maximum image dimensions is 1024 pixels for both height and width
- JSON request object size 10 MB (in case of generation)
- Images per request 1
- Service supports the PNG and JPEG image formats
- Response limit - 10 images
Time of responce
- Responses from the API can take anywhere from <10 second to 30 seconds
- Recall@k
- Precision@k
- F1@k
- We provide load balancer between frontend and backend layers
- Our search and generation services are packed in docker containers
- We provide Kubernetes cluster which manages the search and generation containers
- Embedding space storage is hosted as PostgreSQL, so we can use some built-in solution for load balancing and parallel query execution.
You can try running our API in docker. NVIDIA GPU environment with CUDA is required.
Download models, embeddings database and dataframe with metainfo.
In /clean_app/config.py put pathes to model, embedding and metainfo dataframe.
Build and run docker container.
cd <path_to_cloned_repo>/clear_app
docker build -t styleforge .
docker run --name styleforge_test --gpus all --publish 80:80 styleforge
Note: Tested on Windows environment only.
