File size: 3,710 Bytes
ab331fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | """
sym_map.py - All synonyms for the TF-IDF Vectorizer
"""
SYNONYM_MAP = {
# docker
'containeriz': 'docker',
'containerize': 'docker',
# git
'version control': 'git',
'source control': 'git',
# github
'gitlab': 'github',
'bitbucket': 'github',
'pull request': 'github',
# ci/cd
'infrastructure-as-code': 'ci/cd',
'continuous integration': 'ci/cd',
'continuous deployment': 'ci/cd',
'continuous delivery': 'ci/cd',
'github actions': 'ci/cd',
'gitlab ci': 'ci/cd',
'jenkins': 'ci/cd',
'devops': 'ci/cd',
'cicd': 'ci/cd',
# genai
'generative ai': 'genai',
'frontier model': 'genai',
'foundation model': 'genai',
'gen ai': 'genai',
'gemini': 'genai',
'claude': 'genai',
'gpt': 'genai',
# agents
'multi-agent': 'agents',
'orchestrat': 'agents',
'agentic': 'agents',
'copilot': 'agents',
# mcp
'model context protocol': 'mcp',
'protocol wrapper': 'mcp',
'function calling': 'mcp',
'tool call': 'mcp',
# prompt engineering
'prompt engineer': 'prompt engineering',
'chain-of-thought': 'prompt engineering',
'system prompt': 'prompt engineering',
'few-shot': 'prompt engineering',
'zero-shot': 'prompt engineering',
'prompt design': 'prompt engineering',
# mlops
'experiment track': 'mlops',
'model monitor': 'mlops',
'model deploy': 'mlops',
'model registry': 'mlops',
'ml ops': 'mlops',
# kubernetes
'k8s': 'kubernetes',
'helm': 'kubernetes',
'eks': 'kubernetes',
'aks': 'kubernetes',
'gke': 'kubernetes',
# sql
'postgresql': 'sql',
'postgres': 'sql',
'pgvector': 'sql',
'snowflake': 'sql',
'databricks': 'sql',
'mysql': 'sql',
'nosql': 'sql',
# vectordb
'azure ai search': 'vectordb',
'vector database': 'vectordb',
'vector store': 'vectordb',
'embedding store': 'vectordb',
'pinecone': 'vectordb',
'chromadb': 'vectordb',
'weaviate': 'vectordb',
'qdrant': 'vectordb',
'faiss': 'vectordb',
'milvus': 'vectordb',
# nlp
'natural language': 'nlp',
'named entity': 'nlp',
'text classification': 'nlp',
# aws/azure
'amazon web services': 'aws/azure',
'azure openai': 'aws/azure',
'google cloud': 'aws/azure',
'ai foundry': 'aws/azure',
'sagemaker': 'aws/azure',
'bedrock': 'aws/azure',
'gcp': 'aws/azure',
'lambda': 'aws/azure',
'ec2': 'aws/azure',
's3': 'aws/azure',
} |