4nkh.ca
News
Services
Achievements
Biography
Contact
S.E.O
Hosting
Mobile
Video Games
Business Plan
Basic
Standard
Premium
Basic
Standard
Premium
Supreme
Management
Mail
Advertising
Billing
Language

    NEWS

  • Unix startup script

     
     

    Build your unix script:

    vim /home/user_name/unix_script/python_script.sh
    vim /home/user_name/unix_script/python_script.sh
    
    

    python_script.sh:

    #!/bin/bash
    
    echo "get python version"
    python3 --version
    #!/bin/bash
    
    echo "get python version"
    python3 --version
    
    

    Build the service to run the script:

    vim /lib/systemd/system/startup.service startup.service
    vim /lib/systemd/system/startup.service
    
    

    startup.service:

    [Unit]
    Description=Startup Script
    [Service]
    ExecStart=/bin/bash "/home/user_name/unix_script/python_script.sh"
    [Install]
    WantedBy=multi-user.target
    [Unit]
    Description=Startup Script
    [Service]
    ExecStart=/bin/bash "/home/user_name/unix_script/python_script.sh"
    [Install]
    WantedBy=multi-user.target
    
    

    Enable the service and build the symlink:

    systemctl enable startup.service --now
    systemctl enable startup.service --now
    
    
     
  •  
  • Bedrock Generative AI

     

    https://aws.amazon.com/bedrock/

     
    Easy to setup, very useful, not to expensive. The product is on a good way and it's evolving really fast.
     
  •  
  • LSTM for RNN

     

    https://arxiv.org/pdf/1503.04069.pdf

     
    An nice blog post about the activation process using memories and how the recurrent neural network using LSTM to try short term prediction inside a contextual approach.
     
  •  
« first previous Page 2 of 2.
  • Join
  • Login
 
 
copyright © 2012 4nkh development