Instructions to use Manav2op/EMOTIA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Manav2op/EMOTIA with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Manav2op/EMOTIA", dtype="auto") - Notebooks
- Google Colab
- Kaggle
| FROM node:18-alpine | |
| WORKDIR /app | |
| # Copy package files | |
| COPY package*.json ./ | |
| # Install dependencies | |
| RUN npm install | |
| # Copy the rest of the application | |
| COPY . . | |
| EXPOSE 3000 | |
| CMD ["npm", "run", "dev"] |