Y de eso va el vídeo. Si hablamos de plagio es plagio, y no a donde te lo has llevado sobre la inspiración y el aprendizaje humano. Si en determinados casos estos modelos pueden generar plagios a raíz del overfitting, con esta herramienta se podría comprobar. Ni más ni menos.
CODE
-
FlashAttention Revert and torch.compile Integration Challenges
By
–
Ah, I reverted FlashAttention in this run because it made code messier. Will look into incorporating it back, but yes not sure how nicely it plays with torch.compile. The usual problem with taking on large dependencies you don't understand ;(
-
PyTorch Compile Optimization Reduces Iteration Time by 36%
By
–
To follow up, I had a chance to try it btw:
before: 212ms / iter
>>> model = torch.compile(model)
after: 135ms / iter
nice 🙂 -
Fine-tuning for AI Specialization and Performance
By
–
Not sure I understand fully re: alignment, but fine-tuning is usually the most performant way to specialize when you have the data for it.
-
AI Copilot for Spreadsheet Automation and Data Management
By
–
Copilot, but for your spreadsheet: https://t.co/N6H8mmQAiW
— Greg Brockman (@gdb) 29 décembre 2022Copilot, but for your spreadsheet:
-
GitHub Copilot as an On-Ramp for Learning Prompt Engineering
By
–
If you already write code, I increasingly feel like GitHub Copilot is the best on-ramp to learn prompt engineering, because it's the fastest UI and it's not metered by usage. When you write comments for the benefit of Copilot, you learn to prompt.
-
The unique expertise of a Staff Prompt Engineer in LLMs
By
–
My goal is to do my job so well that I'm not just the first Staff Prompt Engineer, but the last. Most people don't have the time to learn what LLMs have taught me.
-
New max_iterations parameter to control agent iterations
By
–
So glad you asked! there's now a max_iterations parameter you can use to cap the number of iterations an agent takes A bit brute force, but better than nothing
-

LangChain v0.052 Adds Watch Mode Tests Agent Security
By
–
v0.052 Add watch mode for tests – @nfcampos Add schema property to SQL DB class – @diwanksingh Propagate verbose flag to combine-document chains – @parth_29 Add max_iterations kwarg to agent executor, in part to stop attacks like the below
-
LangChain Agents Max Iterations Parameter Implementation
By
–
To expand on the last point, previously agents were allowed to potentially loop forever, whether caused maliciously or not Now you can specify a max_iterations parameter, which stops it after that many iterations https://
langchain.readthedocs.io/en/latest/exam
ples/agents/max_iterations.html
…