Coder Social home page Coder Social logo

dlcgold / appunti Goto Github PK

View Code? Open in Web Editor NEW
65.0 5.0 11.0 317.94 MB

https://dlcgold.github.io/Appunti/

License: Other

TeX 82.82% Prolog 0.44% Lex 0.08% Yacc 0.18% C 0.11% Java 0.20% Python 0.26% C++ 2.00% CMake 0.38% Makefile 0.56% HTML 5.81% CSS 0.39% JavaScript 0.48% R 0.43% Jupyter Notebook 5.86%
notes unimib appunti informatica hacktoberfest2021 hacktoberfest

appunti's People

Contributors

derogab avatar dlcgold avatar fdila avatar puma0x61 avatar steepo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

appunti's Issues

Algoritmo LCS errato

Pagina 21/33

L'algoritmo rappresentato presenta un errore nella seconda condizione:

for j ← 1 to m do
    if X[i] == Y [j] then
        C[i, j] ← C[i − 1, j − 1] + 1
    else
        C[i, j] = max(C[i − 1, j], C[i, j − 1] + 1)
    end if
end for

Se i due caratteri appartenenti alle due sequenze non sono uguali si verifica quale sia il max tra i valori appartenenti alla matrice C in posizione [i - 1, j] e [i, j - 1]
Non ha senso dunque verificare max(C[i − 1, j], C[i, j − 1] + 1), C[i, j - 1] + 1 sarà al più uguale a C[i − 1, j − 1] + 1 e le due condizioni si eguaglierebbero.

Problema appunti ML pag.10

Controllate gli appunti di ML, pagina 10:

Riscrivendo dal punto di vista insiemistico si ha che hj è più generale o
uguale a hk sse:
hk ⊇ hj
e che è più generale di hk sse:
hk ⊃ hj

Se hj >= hk allora hj non potrà essere un sottoinsieme del secondo.

Bug delle immagini di ModConc

Fare nuovamente la compilazione latex di Modelli della Concorrenza con la versione di texlive corretta, in seguito ai bug introdotti sulle immagini dalla PR #222

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.