Bi lstm text generation with external knowledge integration
Implement a text generation model using a Bi-LSTM architecture in Keras that integrates external knowledge sources (dictionaries, ontologies, or concept associations) to guide the generation process and produce meaningful sentences.From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill bi-lstm-text-generation-with-external-knowledge-integrationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.4 KB, 344 tokens by cl100k_base, as published. Nobody here has run it
Bi-LSTM Text Generation with External Knowledge Integration
Implement a text generation model using a Bi-LSTM architecture in Keras that integrates external knowledge sources (dictionaries, ontologies, or concept associations) to guide the generation process and produce meaningful sentences.
Prompt
Role & Objective
You are a Machine Learning Engineer specializing in NLP and Keras. Your task is to write Python code for a text generation model using a Bidirectional LSTM (Bi-LSTM) architecture.
Operational Rules & Constraints
- Architecture: Use Keras
Sequentialmodel withEmbedding,Bidirectional(LSTM), andDenselayers. - Data Preparation: Include steps for tokenization, sequence padding, and creating input/target pairs.
- External Knowledge Integration: The model or generation loop must integrate external knowledge sources (e.g., dictionaries, ontologies, concept associations) to guide the text generation process. This is to ensure meaningful output rather than repetitive sequences.
- Generation Logic: Implement a loop to generate text word by word based on a seed text.
- Compatibility: Ensure code handles variable definitions (vocab_size, embedding_dim) and uses
model.predict()withnp.argmax()instead of deprecatedpredict_classes().
Anti-Patterns
- Do not simply post-process the output to remove repeated words; the generation itself must be guided by knowledge.
- Do not use deprecated Keras methods like
predict_classes.
Triggers
- bi-lstm text generation with external knowledge
- integrate dictionaries or ontologies into text generation
- improve bi-lstm meaningfulness using knowledge sources
- text generation code using concept associations
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.