Name: Towards AI Legal Name: Towards AI, Inc. Description: Towards AI is the world's leading artificial intelligence (AI) and technology publication. Read by thought-leaders and decision-makers around the world. Phone Number: +1-650-246-9381 Email: [email protected]
228 Park Avenue South New York, NY 10003 United States
Website: Publisher: https://towardsai.net/#publisher Diversity Policy: https://towardsai.net/about Ethics Policy: https://towardsai.net/about Masthead: https://towardsai.net/about
Name: Towards AI Legal Name: Towards AI, Inc. Description: Towards AI is the world's leading artificial intelligence (AI) and technology publication. Founders: Roberto Iriondo, , Job Title: Co-founder and Advisor Works for: Towards AI, Inc. Follow Roberto: X, LinkedIn, GitHub, Google Scholar, Towards AI Profile, Medium, ML@CMU, FreeCodeCamp, Crunchbase, Bloomberg, Roberto Iriondo, Generative AI Lab, Generative AI Lab Denis Piffaretti, Job Title: Co-founder Works for: Towards AI, Inc. Louie Peters, Job Title: Co-founder Works for: Towards AI, Inc. Louis-François Bouchard, Job Title: Co-founder Works for: Towards AI, Inc. Cover:
Towards AI Cover
Logo:
Towards AI Logo
Areas Served: Worldwide Alternate Name: Towards AI, Inc. Alternate Name: Towards AI Co. Alternate Name: towards ai Alternate Name: towardsai Alternate Name: towards.ai Alternate Name: tai Alternate Name: toward ai Alternate Name: toward.ai Alternate Name: Towards AI, Inc. Alternate Name: towardsai.net Alternate Name: pub.towardsai.net
5 stars – based on 497 reviews

Frequently Used, Contextual References

TODO: Remember to copy unique IDs whenever it needs used. i.e., URL: 304b2e42315e

Resources

Take our 85+ lesson From Beginner to Advanced LLM Developer Certification: From choosing a project to deploying a working product this is the most comprehensive and practical LLM course out there!

Publication

Google’s CodeGemma: I am not Impressed
Artificial Intelligence   Data Science   Latest   Machine Learning

Google’s CodeGemma: I am not Impressed

Last Updated on April 11, 2024 by Editorial Team

Author(s): Mandar Karhade, MD. PhD.

Originally published on Towards AI.

I experimented with CodeGemma. Here are my results

What codeGemma is supposed to be, according to Google —

CodeGEMMA represents a significant advancement in the realm of code generation and completion, stemming from Google’s broader Gemma model family. As a fine-tuned version of the Gemma-7b model, CodeGEMMA incorporates an additional 0.7 billion high-quality, code-related tokens, offering a powerful tool for developers and researchers. This article delves into the technical intricacies, applications, and potential of CodeGEMMA, providing a comprehensive understanding of this cutting-edge technology.

https://huggingface.co/TechxGenus/CodeGemma-7b

We’ve fine-tuned Gemma-7b with an additional 0.7 billion high-quality, code-related tokens for 3 epochs. We used DeepSpeed ZeRO 3 and Flash Attention 2 to accelerate the training process. It achieves 67.7 pass@1 on HumanEval-Python. This model operates using the Alpaca instruction format (excluding the system prompt).

I am really confused after using it — I could use only 2B model and not the 7B. I understand 2B has limitations in that it can't really be generated from natural language; even the code completion tasks were hit-and-miss.

Here is how I ran the code on Google Colab.

%pip install accelerate

Then restart the session/runtime

from google.colab import userdatafrom transformers import pipeline, AutoModelForCausalLM, AutoTokenizer, GemmaTokenizerimport torch# Get Huggingface tokenHF_TOKEN = userdata.get('hf_key')

Here hf_key is my secret stored on google Colab secret manager. You can name… Read the full blog for free on Medium.

Join thousands of data leaders on the AI newsletter. Join over 80,000 subscribers and keep up to date with the latest developments in AI. From research to projects and ideas. If you are building an AI startup, an AI-related product, or a service, we invite you to consider becoming a sponsor.

Published via Towards AI

Feedback ↓