• Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
Les liens de StyMaar
toggle menu
Add link
Search
14678 links
186 results tagged tuto x
  • #Hey, Computer, Make Me a Font

    Tue 03 Oct 2023 09:32:04 PM CEST - permalink - https://serce.me/posts/02-10-2023-hey-computer-make-me-a-font
    font IA Tuto
  • #Extreme Bevy 4: Keeping score

    Sun 24 Sep 2023 12:24:40 AM CEST - permalink - https://johanhelsing.studio/posts/extreme-bevy-4
    gamedev Rust tuto
  • #OpenPipe/examples/classify-recipes at main · OpenPipe/OpenPipe

    Wed 13 Sep 2023 03:00:18 PM CEST - permalink - https://github.com/OpenPipe/OpenPipe/tree/main/examples/classify-recipes
    IA tuto
  • #LLM Training: RLHF and Its Alternatives

    Sun 10 Sep 2023 10:50:41 PM CEST - permalink - https://magazine.sebastianraschka.com/p/llm-training-rlhf-and-its-alternatives
    IA tuto à_lire
  • #bert-for-laptops/BERT_for_laptops.ipynb at main · samvher/bert-for-laptops

    Sat 09 Sep 2023 03:37:52 PM CEST - permalink - https://github.com/samvher/bert-for-laptops/blob/main/BERT_for_laptops.ipynb
    IA tuto à_lire
  • #WebGL shader examples

    Sat 09 Sep 2023 02:04:51 PM CEST - permalink - https://webgl-shaders.com/
    GFX ressource Tuto
  • #Gentle intro to GPUs for backend developers. Part 1 - xyzw.io

    Mon 04 Sep 2023 11:39:55 PM CEST - permalink - https://www.xyzw.io/posts/backend-gpu-p1/
    *** GPU informatique tuto à_faire
  • #Patterns with Rust types

    Sat 02 Sep 2023 10:53:06 AM CEST - permalink - https://www.shuttle.rs/blog/2022/07/28/patterns-with-rust-types
    Rust tuto
  • #Learning Async Rust With Entirely Too Many Web Servers

    Sat 26 Aug 2023 03:20:21 PM CEST - permalink - https://ibraheem.ca/posts/too-many-web-servers/
    ** Rust tuto à_lire
  • #Fine-tuning of Falcon-7B Large Language Model using QLoRA on Mental Health Conversational Dataset | by Arun Brahma | Jul, 2023 | Medium

    Fri 25 Aug 2023 03:38:29 PM CEST - permalink - https://medium.com/@iamarunbrahma/fine-tuning-of-falcon-7b-large-language-model-using-qlora-on-mental-health-dataset-aa290eb6ec85
    IA Tuto à_lire
  • #Learning Async Rust With Entirely Too Many Web Servers

    Sun 20 Aug 2023 11:27:44 AM CEST - permalink - https://ibraheem.ca/posts/too-many-web-servers/#ref:3
    *** dev Rust Tuto à_faire
  • #How To Use QEMU From the Linux Command-Line

    sudo apt install qemu-utils
    sudo apt install qemu-system-x86
    
    qemu-img create -f qcow2 myVirtualDisk.qcow2 20G
    
    qemu-system-x86_64 -enable-kvm -m 4G -smp 2 -hda myVirtualDisk.qcow2 -boot d -cdrom linuxmint-21.2-mate-64bit.iso -netdev user,id=net0,net=192.168.0.0/24,dhcpstart=192.168.0.9 -device virtio-net-pci,netdev=net0 -vga cirrus -device AC97 -cpu host

    Note: petite différence par rapport à l'article:

    • -vga cirrus pour avoir le GPU le plus basique
    • -cpu host pour avoir le même CPU dans la VM que sur la machine hôte

    Once the VM is installed, drop the -boot d -cdrom linuxmint-21.2-mate-64bit.iso parameter from the command.

    Pour utiliser SPICE

    sudo apt install virt-viewers

    And we need to make sure that the ~/.config/mimeapps.list file (on the host machine) contains the following:

    [Added Associations]
    [...]
    x-scheme-handler/spice+unix=remote-viewer.desktop

    And then run the VM with:

    qemu-system-x86_64 -enable-kvm -m 4G -smp 2 -hda myVirtualDisk.qcow2 -netdev user,id=net0,net=192.168.0.0/24,dhcpstart=192.168.0.9 -device virtio-net-pci,netdev=net0 -vga cirrus -device AC97 -device virtio-serial-pci -spice port=5930,disable-ticketing=on -device virtserialport,chardev=spicechannel0,name=com.redhat.spice.0 -chardev spicevmc,id=spicechannel0,name=vdagent -display spice-app -cpu host

    Pour partager un répertoire entre l'hôte et la VM

    sur la machine hôte:

    mkdir VM_share
    
    qemu-system-x86_64 -enable-kvm -m 4G -smp 2 -hda myVirtualDisk.qcow2 -netdev user,id=net0,net=192.168.0.0/24,dhcpstart=192.168.0.9 -device virtio-net-pci,netdev=net0 -vga cirrus -device AC97 -device virtio-serial-pci -spice port=5930,disable-ticketing=on -device virtserialport,chardev=spicechannel0,name=com.redhat.spice.0 -chardev spicevmc,id=spicechannel0,name=vdagent -display spice-app -cpu host -virtfs local,path=./VM_share,mount_tag=host0,security_model=mapped,id=host0

    Sur la VM:

    sudo mkdir /mnt/9p
    sudo mount -t 9p -o trans=virtio,version=9p2000.L host0 /mnt/9p

    Finally, to make the mounting automatic on every guest reboot, we need to add the 9p modules to initramfs and a line to /etc/fstab. So, let’s add the following three lines to /etc/initramfs-tools/modules:

    9p
    9pnet
    9pnet_virtio

    Then, let’s add the following line in /etc/fstab:

    host0 /mnt/9p 9p trans=virtio,version=9p2000.L 0 0
    Thu 17 Aug 2023 10:04:46 AM CEST - permalink - https://www.baeldung.com/linux/qemu-from-terminal
    Linux note ressource tuto VM
  • #Just to add to this, I run through a lot of these topics around fine-tuning Llam... | Hacker News

    Fri 11 Aug 2023 11:26:39 PM CEST - permalink - https://news.ycombinator.com/item?id=37091097
    IA tuto
  • #GitHub - hackclub/putting-the-you-in-cpu: A technical explainer by @kognise of how your computer runs programs, from start to finish.

    Wed 09 Aug 2023 05:50:35 PM CEST - permalink - https://github.com/hackclub/putting-the-you-in-cpu
    Informatique tuto à_lire
  • #Llama from scratch (or how to implement a paper without crying) | Brian Kitano

    Wed 09 Aug 2023 05:50:01 PM CEST - permalink - https://blog.briankitano.com/llama-from-scratch/
    IA Tuto à_lire
  • #Finetuning LLama 2 to code like me (late night coding) - YouTube

    Mon 24 Jul 2023 11:51:20 PM CEST - permalink - https://www.youtube.com/watch?app=desktop&v=TYgtG2Th6fI&t=3998s
    IA tuto vidéo à_faire
  • #A simple guide to fine-tuning Llama 2 | Brev docs

    Mon 24 Jul 2023 10:15:45 PM CEST - permalink - https://brev.dev/blog/fine-tuning-llama-2
    cloud IA tuto
  • #ControlNet v1.1: A complete guide - Stable Diffusion Art

    Sun 23 Jul 2023 10:45:26 PM CEST - permalink - https://stable-diffusion-art.com/controlnet/
    ** IA ressource tuto
  • #Free Tool to Generate “Hidden” Text (Using Stable Diffusion + ControlNet) : StableDiffusion

    https://replicable.art/learn/generate-images-with-hidden-text-using-stable-diffusion-and-controlnet

    Sun 23 Jul 2023 03:03:52 PM CEST - permalink - https://old.reddit.com/r/StableDiffusion/comments/1561k15/free_tool_to_generate_hidden_text_using_stable/
    Fun IA tuto
  • #Building Autograd Engine & Neural Network Library: An Interactive Guide

    Thu 06 Jul 2023 02:23:24 PM CEST - permalink - https://x0axz.com/blog/autograd.html
    IA tuto à_lire
◄Older page 1 / 10 Links per page: 20 50 100
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation