Update README.md
Browse files
    	
        README.md
    CHANGED
    
    | @@ -8,16 +8,39 @@ base_model: | |
| 8 | 
             
            - meta-llama/Llama-3.2-3B-Instruct
         | 
| 9 | 
             
            pipeline_tag: text2text-generation
         | 
| 10 | 
             
            library_name: transformers
         | 
|  | |
|  | |
|  | |
|  | |
| 11 | 
             
            ---
         | 
| 12 | 
            -
            # Llama-3.2-3B-appreciation-full | 
| 13 | 
            -
            Alpha merged version of [eltorio/Llama-3.2-3B-appreciation](https://huggingface.co/eltorio/Llama-3.2-3B-appreciation)  
         | 
| 14 | 
            -
            See original model for documentation…  
         | 
| 15 |  | 
| 16 | 
            -
             | 
| 17 | 
            -
             | 
| 18 | 
            -
            [](https://colab.research.google.com/#fileId=https://huggingface.co/eltorio/Llama-3.2-3B-appreciation-full/blob/main/llama-3-2-3b-appreciation-full-inference-test.ipynb)
         | 
| 19 |  | 
| 20 | 
            -
             | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
| 21 | 
             
            ```python
         | 
| 22 | 
             
            # -*- coding: utf-8 -*-
         | 
| 23 | 
             
            """
         | 
| @@ -70,4 +93,18 @@ outputs = model.generate(input_ids = inputs, | |
| 70 | 
             
            decoded_sequences = tokenizer.batch_decode(outputs[:, inputs.shape[1]:],skip_special_tokens=True)[0]
         | 
| 71 |  | 
| 72 | 
             
            print(decoded_sequences)
         | 
| 73 | 
            -
            ```
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 8 | 
             
            - meta-llama/Llama-3.2-3B-Instruct
         | 
| 9 | 
             
            pipeline_tag: text2text-generation
         | 
| 10 | 
             
            library_name: transformers
         | 
| 11 | 
            +
            tags:
         | 
| 12 | 
            +
            - llama
         | 
| 13 | 
            +
            - education
         | 
| 14 | 
            +
            - text-generation
         | 
| 15 | 
             
            ---
         | 
| 16 | 
            +
            # Llama-3.2-3B-appreciation-full
         | 
|  | |
|  | |
| 17 |  | 
| 18 | 
            +
            ## Model Overview
         | 
| 19 | 
            +
            Merged version of [eltorio/Llama-3.2-3B-appreciation](https://huggingface.co/eltorio/Llama-3.2-3B-appreciation), optimized for generating student evaluations in French.
         | 
|  | |
| 20 |  | 
| 21 | 
            +
            ## Key Features
         | 
| 22 | 
            +
            - Generates personalized student evaluations in French
         | 
| 23 | 
            +
            - Trained on teacher-written reports
         | 
| 24 | 
            +
            - Optimized for concise feedback (40 words max)
         | 
| 25 | 
            +
            - Focuses on constructive assessment
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            ## Use Cases
         | 
| 28 | 
            +
            - Generating personalized student evaluations
         | 
| 29 | 
            +
            - Assisting teachers with report writing
         | 
| 30 | 
            +
            - Analyzing student performance patterns
         | 
| 31 | 
            +
             | 
| 32 | 
            +
            ## Performance & Limitations
         | 
| 33 | 
            +
            - Optimized for short texts (max 40 words)
         | 
| 34 | 
            +
            - Best results for history-geography evaluations
         | 
| 35 | 
            +
            - May exhibit biases from training data
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            ## Technical Details
         | 
| 38 | 
            +
            Base model: meta-llama/Llama-3.2-3B-Instruct
         | 
| 39 | 
            +
            Training method: LoRA with PEFT
         | 
| 40 | 
            +
            Merged using: [Kaggle notebook](https://colab.research.google.com/#https://huggingface.co/eltorio/Llama-3.2-3B-appreciation-full/blob/main/llama-3-2-3b-appreciation-merge.ipynb)  
         | 
| 41 | 
            +
            Running it on Colab needs a trivial modification to the Hugging face login !
         | 
| 42 | 
            +
             | 
| 43 | 
            +
            ## Quick Start
         | 
| 44 | 
             
            ```python
         | 
| 45 | 
             
            # -*- coding: utf-8 -*-
         | 
| 46 | 
             
            """
         | 
|  | |
| 93 | 
             
            decoded_sequences = tokenizer.batch_decode(outputs[:, inputs.shape[1]:],skip_special_tokens=True)[0]
         | 
| 94 |  | 
| 95 | 
             
            print(decoded_sequences)
         | 
| 96 | 
            +
            ```
         | 
| 97 | 
            +
            ## Example Outputs
         | 
| 98 | 
            +
            - "Le bilan du trimestre est plutôt positif. X travaille dur, son niveau est correct et son attitude très positive. Il est donc tout à fait possible de réussir cette année. Attention toutefois aux bavardages et aux distractions en classe."
         | 
| 99 | 
            +
            - "Elève sérieux tout au long de l'année. X n'aurait pas pu avoir plus de succès s'il s’était plus impliqué en classe. Attention aux bavardages!"
         | 
| 100 | 
            +
            - "C'est un très bon trimestre. Le travail reste très sérieux et la participation tout à fait régulière. Bravo!"
         | 
| 101 | 
            +
             | 
| 102 | 
            +
            ## Reproduction
         | 
| 103 | 
            +
            Model merged on Kaggle. Available notebooks:
         | 
| 104 | 
            +
            - Merging notebook [](https://colab.research.google.com/#https://huggingface.co/eltorio/Llama-3.2-3B-appreciation-full/blob/main/llama-3-2-3b-appreciation-merge.ipynb)
         | 
| 105 | 
            +
            - Inference notebook [](https://colab.research.google.com/#fileId=https://huggingface.co/eltorio/Llama-3.2-3B-appreciation-full/blob/main/llama-3-2-3b-appreciation-full-inference-test.ipynb)
         | 
| 106 | 
            +
             | 
| 107 | 
            +
            ## License
         | 
| 108 | 
            +
            This model is licensed under AGPL-3.0
         | 
| 109 | 
            +
             | 
| 110 | 
            +
            ## Citation
         |