2025-10-08 22:51:36 +02:00
2025-10-03 18:00:52 +02:00
2025-10-07 20:44:40 +02:00
2025-10-03 18:02:27 +02:00
2025-09-17 10:30:58 +02:00
2025-10-08 22:51:36 +02:00
2025-10-08 22:51:36 +02:00
2025-10-08 11:02:18 +02:00
2025-09-18 18:36:42 +02:00
2025-10-03 18:01:05 +02:00
2025-09-17 16:16:58 +02:00
2025-09-16 20:06:08 +02:00

NanoSocrates

This is the work project for the DeepLearning exam of 16th September 2025

Index

Setup

Create and activate you Conda enviroment with:

   conda env create -f environment.yaml
   conda activate deep_learning

Now install dependencies on pip:

    pip install -r requirements.txt

Add the following on .vscode/settings.json

   ```json
   {
          // For linux
          "terminal.integrated.env.linux": {
                 "PYTHONPATH": "${workspaceFolder}"
          },
          // For OSX
          "terminal.integrated.env.osx": {
                 "PYTHONPATH": "${workspaceFolder}"
          },
          // For Windows
          "terminal.integrated.env.windows": {
                 "PYTHONPATH": "${workspaceFolder}"
          }
   }
   ```

TroubleShooting

Sometimes when uploading really large batch of data, git can stop the uploads thanks to the timeout. The solution is to locally change its settings:

   git config lfs.dialtimeout 3600
   git config lfs.activitytimeout 3600

for clearance check the link: https://stackoverflow.com/questions/58961697/i-o-timeout-when-pushing-to-a-git-reporsitory

Description
This is the work project for the DeepLearning exam of 16th September 2025
Readme MIT 12 GiB