id
stringlengths
9
104
author
stringlengths
3
36
task_category
stringclasses
32 values
tags
sequencelengths
1
4.05k
created_time
unknowndate
2022-03-02 23:29:04
2025-03-18 02:34:30
last_modified
stringdate
2021-02-13 00:06:56
2025-03-18 09:30:19
downloads
int64
0
15.6M
likes
int64
0
4.86k
README
stringlengths
44
1.01M
matched_bigbio_names
sequencelengths
1
8
Adjoumani/baouleTokenizer
Adjoumani
null
[ "region:us" ]
"2025-02-08T15:06:48Z"
2025-02-08T15:15:13+00:00
0
0
--- {} --- ```markdown --- language: - baq - bci - fr tags: - African NLP - low-resource language - sentencepiece - tokenizer - Baoulé - Côte d'Ivoire - translation - tonal language datasets: - custom license: apache-2.0 library_name: transformers pipeline_tag: text2text-generation widget: - text: "Wafa sɛ yɛ ɔ fata kɛ be nga be lafi su kɛ bé trán asiɛ’n su wa’n, be bu be nga bé kɔ́ ɲanmiɛn" example_title: "Traduction de base" --- # Tokenizer Baoulé : Modèle de Traduction Français-Baoulé 🌍 Premier tokenizer SentencePiece spécialisé pour la langue Baoulé (Côte d'Ivoire) 🇨🇮 [![Hugging Face Hub](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Model%20Hub-blue)](https://huggingface.co/votre_username/baoule-tokenizer) ## Fonctionnalités Clés ✅ Prise en charge complète des caractères tonals Baoulé (ɛ́, ɩ̄, ɔ̀, etc.) ✅ Optimisé pour les modèles de traduction automatique (Transformer) ✅ Vocabulaire de 206 tokens avec couverture linguistique complète ✅ Intégration native avec 🤗 Transformers et Tokenizers ✅ Compatible avec Google Traduction Custom Model et Amazon Translate ## Installation et Utilisation ```python from transformers import AutoTokenizer tokenizer = AutoTokenizer.from_pretrained("Adjoumani/BaouleTokenizer_V1") # Utilisation du tokenizer text = "Wafa sɛ yɛ ɔ fata kɛ be nga be lafi su kɛ bé trán asiɛ’n su wa’n, be bu be nga bé kɔ́ ɲanmiɛn" encoded = tokenizer.encode(text) decoded = tokenizer.decode(encoded) print(f"Tokens: {tokenizer.tokenize(text)}") # Output: ['W', 'a', 'f', 'a', '▁s', 'ɛ', '▁y', 'ɛ', '▁ɔ', '▁f', 'a', 't', 'a', '▁k', 'ɛ', '▁b', 'e', '▁n', 'g', 'a', '▁b', 'e', '▁l', 'a', 'f', 'i', '▁s', 'u', '▁k', 'ɛ', '▁b', 'é', '▁t', 'r', 'á', 'n', '▁a', 's', 'i', 'ɛ', '’', 'n', '▁s', 'u', '▁w', 'a', '’', 'n', ',', '▁b', 'e', '▁b', 'u', '▁b', 'e', '▁n', 'g', 'a', '▁b', 'é', '▁k', 'ɔ', '́', '▁ɲ', 'a', 'n', 'm', 'i', 'ɛ', 'n'] ``` ## Détails Techniques | Paramètre | Valeur | |--------------------|----------------------| | Architecture | SentencePiece BPE | | Taille du vocabulaire | 206 | | Caractères couverts | 1.0 (Unicode) | | Tokens spéciaux | [BOS], [EOS], [UNK], [PAD] | | Langues cibles | Français ↔ Baoulé | | Encodage | UTF-8 | ## Tons Supportés Le tokenizer gère tous les tons Baoulé selon la norme Unicode : | Caractère | Code Unicode | Exemple | |-----------|--------------|---------| | ɛ́ | U+025B U+0301| Mɔ́kɛ́ | | ɩ̄ | U+0269 U+0304| Ɩ̄tɩ̄ | | ɔ̀ | U+0254 U+0300| Kɔ̀lɔ̀ | | ɛ̂ | U+025B U+0302| Ɛ̂sɛ̂ | ## Cas d'Usage Recommandés - Traduction automatique Français-Baoulé - Synthèse vocale pour systèmes d'assistance vocale - Reconnaissance de la parole Baoulé - Outils éducatifs numériques - Préservation du patrimoine linguistique ## Meilleures Pratiques ```python # Pour gérer les phrases longues tokenizer.model_max_length = 512 # Ajout de tokens personnalisés new_tokens = ["<dialect:NDÊ>", "<dialect:SAFOUÈ>"] tokenizer.add_tokens(new_tokens) ``` ## Jeu de Données d'Entraînement Données collectées grâce à : - Traductions de textes bibliques : Les données ont été extraites en grande partie depuis [Glosbe](https://www.glosbe.com/) et structurées manuellement pour assurer une qualité et une précision optimales. Le contenu a été nettoyé pour supprimer les balises HTML indésirables et formaté de manière cohérente. - Corpus oral transcrit (projet UNESCO) - Phrases quotidiennes annotées - Textes gouvernementaux bilingues **Taille du corpus** : 1500 phrases alignées (en cours d'expansion) ## Citation Si vous utilisez ce tokenizer dans vos recherches, merci de citer : ```bibtex @misc{BaouleTokenizer2023, author = {Votre Nom}, title = {Baoulé Tokenizer for Low-Resource Machine Translation}, year = {2023}, publisher = {Hugging Face}, howpublished = {\url{https://huggingface.co/Adjoumani/BaouleTokenizer_V1}} } ``` ## Licence Apache 2.0 - [Voir la licence complète](LICENSE) ## Contribuer Nous encourageons les contributions notamment pour : - L'expansion du vocabulaire - L'annotation des tons - L'ajout de dialectes régionaux Contact : [[email protected]](mailto:[email protected]) --- **Mots-clés SEO** : Tokenizer Baoulé, Traduction Français-Baoulé, NLP Africain, Langues Tonales, Côte d'Ivoire AI, Modèle Linguistique Basse Ressource, SentencePiece Baoulé, Préservation Langue Africaine ```
[ "CAS" ]
blueanderson/missav
blueanderson
null
[ "region:us" ]
"2025-02-11T13:26:07Z"
2025-02-11T13:32:08+00:00
0
0
--- {} --- ![MissAV-Downloader](https://socialify.git.ci/MiyukiQAQ/MissAV-Downloader/image?description=1&font=Inter&forks=1&issues=1&language=1&name=1&owner=1&pattern=Plus&pulls=1&stargazers=1&theme=Auto) ## ⭐️ Miyuki A tool for downloading videos from the "MissAV" website. ## ⚙️ Installation To install Miyuki from the Python Package Index (PyPI) run: ``` pip install miyuki ``` To upgrade Miyuki from the Python Package Index (PyPI) run: ``` pip install --upgrade miyuki ``` ## 📷 Snapshot ![snapshot.png](https://raw.githubusercontent.com/MiyukiQAQ/MissAV-Downloader/master/resources/readme_pics/snapshot.png) ## 📖 Instructions ``` [root@miyuki ~]# miyuki -h usage: miyuki.py [-h] [-urls [...]] [-auth [...]] [-plist] [-limit] [-search] [-file] [-proxy] [-ffmpeg] [-cover] [-ffcover] [-noban] [-title] [-quality] [-retry] [-delay] [-timeout] A tool for downloading videos from the "MissAV" website. Main Options: Use the -urls option to specify the video URLs to download. Use the -auth option to specify the username and password to download the videos collected by the account. Use the -plist option to specify the public playlist URL to download all videos in the list. Use the -search option to search for movie by serial number and download it. Use the -file option to download all URLs in the file. ( Each line is a URL ) Additional Options: Use the -limit option to limit the number of downloads. (Only works with the -plist option.) Use the -proxy option to configure http proxy server ip and port. Use the -ffmpeg option to get the best video quality. ( Recommend! ) Use the -cover option to save the cover when downloading the video Use the -ffcover option to set the cover as the video preview (ffmpeg required) Use the -noban option to turn off the miyuki banner when downloading the video Use the -title option to use the full title as the movie file name Use the -quality option to specify the movie resolution (360, 480, 720, 1080...) Use the -retry option to specify the number of retries for downloading segments Use the -delay option to specify the delay before retry ( seconds ) Use the -timeout option to specify the timeout for segment download ( seconds ) options: -h, --help show this help message and exit -urls [ ...] Movie URLs, separate multiple URLs with spaces -auth [ ...] Username and password, separate with space -plist Public playlist url -limit Limit the number of downloads -search Movie serial number -file File path -proxy HTTP(S) proxy -ffmpeg Enable ffmpeg processing -cover Download video cover -ffcover Set cover as preview (ffmpeg required) -noban Do not display the banner -title Full title as file name -quality Specify the movie resolution -retry Number of retries for downloading segments -delay Delay in seconds before retry -timeout Timeout in seconds for segment download Examples: miyuki -plist "https://missav.ai/search/JULIA?filters=uncensored-leak&sort=saved" -limit 50 -ffmpeg miyuki -plist "https://missav.ai/search/JULIA?filters=individual&sort=views" -limit 20 -ffmpeg miyuki -plist "https://missav.ai/dm132/actresses/JULIA" -limit 20 -ffmpeg -cover miyuki -plist "https://missav.ai/playlists/ewzoukev" -ffmpeg -proxy localhost:7890 miyuki -urls https://missav.ai/sw-950 https://missav.ai/dandy-917 miyuki -urls https://missav.ai/sw-950 -proxy localhost:7890 miyuki -auth [email protected] miyukiQAQ -ffmpeg miyuki -file /home/miyuki/url.txt -ffmpeg miyuki -search sw-950 -ffcover ``` ## 💬 The ```-plist``` option - Use the -plist option to download movies from a playlist. - This playlist can be a public playlist created by your own account, or any playlist displayed based on search results or tag filters. - **You should wrap the playlist URL with " " when you use the -plist option.** Command Examples: - ```miyuki -plist "https://missav.ai/search/JULIA?filters=uncensored-leak&sort=saved" -limit 50 -ffmpeg``` - ```miyuki -plist "https://missav.ai/search/JULIA?filters=individual&sort=views" -limit 20 -ffmpeg``` - ```miyuki -plist "https://missav.ai/dm132/actresses/JULIA" -limit 20 -ffmpeg``` - ```miyuki -plist "https://missav.ai/playlists/ewzoukev" -limit 20 -ffmpeg``` - ```miyuki -plist "https://missav.ai/dm444/en/labels/WANZ" -limit 20 -ffmpeg``` - ```miyuki -plist "https://missav.ai/dm21/en/makers/Takara%20Visual" -limit 20 -ffmpeg``` - ```miyuki -plist "https://missav.ai/dm1/en/genres/4K" -limit 20 -ffmpeg``` ## 💡 Precautions - If you are from an ancient oriental country, you will most likely need a proxy. - Use ffmpeg to synthesize videos for the best experience. ## 👀 About FFmpeg 1. If you want miyuki to use ffmpeg to process the video, use the -ffmpeg option. 2. Please check whether the ffmpeg command is valid before using the -ffmpeg option. (e.g. ```ffmpeg -version```) 3. To install FFmpeg, please refer to https://ffmpeg.org/ ## 📄 Disclaimer This project is licensed under the [MIT License](LICENSE). The following additional disclaimers and notices apply: ### 1. Legal Compliance - This software is provided solely for **communication, research, learning, and personal use**. - Users are responsible for ensuring that their use of this software complies with all applicable laws and regulations in their jurisdiction. - The software must not be used for any unlawful, unethical, or unauthorized purposes, including but not limited to violating third-party rights or legal restrictions. ### 2. No Warranty As stated in the MIT License: > "THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT." ### 3. Limitation of Liability - The author(s) shall not be held liable for any claims, damages, or other liabilities arising from or in connection with the use or performance of this software. - Users bear all risks and responsibilities for the use of this software, including but not limited to data loss, system damage, or legal consequences. ### 4. Third-Party Dependencies - This project may include or depend on third-party libraries or tools. Users are responsible for reviewing and complying with the licenses and terms of these dependencies. ### 5. Security and Privacy - This software may interact with user systems, networks, or data. Users should implement appropriate security measures to protect sensitive information and infrastructure. - The authors are not responsible for any security vulnerabilities or data breaches resulting from the use of this software. ## 📈 Star History [![Star History Chart](https://api.star-history.com/svg?repos=MiyukiQAQ/MissAV-Downloader&type=Date)](https://star-history.com/#MiyukiQAQ/MissAV-Downloader&Date)
[ "BEAR" ]