Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmancio00/contest_masl_2023
Contest per Analisi Mulivariata e Statistical Learning
https://github.com/cmancio00/contest_masl_2023
python statistical-learning
Last synced: 26 days ago
JSON representation
Contest per Analisi Mulivariata e Statistical Learning
- Host: GitHub
- URL: https://github.com/cmancio00/contest_masl_2023
- Owner: cMancio00
- License: gpl-3.0
- Created: 2023-11-25T08:47:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-11T08:30:39.000Z (about 1 year ago)
- Last Synced: 2023-12-11T15:35:06.524Z (about 1 year ago)
- Topics: python, statistical-learning
- Language: Jupyter Notebook
- Homepage: https://www.unifi.it/p-ins2-2022-624140-0.html
- Size: 8.44 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Contest Multivariate Analysis and Statistical Learning 2023
**Autore**:
- [Christian Mancini](https://github.com/cMancio00)# Multi Sample Splitting
Utilizzare il kernel descritto in seguito per eseguire il [Notebook](/MultiSampleSplitting.ipynb).
## Installazione dei requisiti per la riproduzione dei risultati.### Creazione dell' Ambiente Virtuale nella cartella cartella `.venv`
```bash
python3 -m venv .venv
```> Si consiglia di essere nella cartella di progetto per un'organizzazione più efficiente.
>> Avendo specificato un nome nascosto, il nome dell' ambiente Virtuale sarà il nome della cartella del progetto,
>> in questo caso `Contest_MASL_2023`### Collegare l' Ambiente Virtuale ad un Kernel di Jupyter
#### Attivare l'ambiente
```bash
source .venv/bin/activate
```
#### Installare il kernel di jupyter
```bash
pip install ipykernel
```#### Aggingere l'ambiente virtuale a jupyter con
```bash
python -Xfrozen_modules=off -m ipykernel install --user --name=Contest_MASL_2023
```
Stampando la lista dei kernel dovremmo ottenere il seguente risultato:```bash
jupyter kernelspec list
``````
0.00s - Debugger warning: It seems that frozen modules are being used, which may
0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off
0.00s - to python to disable frozen modules.
0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation.
Available kernels:
contest_masl_2023 /home/mancio/.local/share/jupyter/kernels/contest_masl_2023
python3 /home/mancio/.local/share/jupyter/kernels/python3```
### Installazione delle dipendenze
```bash
pip install --upgrade pip & pip install -r requirements.txt
```