DLStudio


NameDLStudio JSON
Version 2.4.9 PyPI version JSON
download
home_pagehttps://engineering.purdue.edu/kak/distDLS/DLStudio-2.4.9.html
SummaryA PyTorch based software platform for teaching the Deep Learning class at Purdue University
upload_time2024-05-01 17:12:04
maintainerAvinash Kak
docs_urlNone
authorAvinash Kak
requires_pythonNone
licensePython Software Foundation License
keywords pytorch programming
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            

Consult the module API page at

      https://engineering.purdue.edu/kak/distDLS/DLStudio-2.4.9.html

for all information related to this module, including the information about
the latest changes to the code.  

::

      convo_layers_config = "1x[128,3,3,1]-MaxPool(2) 1x[16,5,5,1]-MaxPool(2)"
      fc_layers_config = [-1,1024,10]
      
      dls = DLStudio(
                        dataroot = "/home/kak/ImageDatasets/CIFAR-10/",
                        image_size = [32,32],
                        convo_layers_config = convo_layers_config,
                        fc_layers_config = fc_layers_config,
                        path_saved_model = "./saved_model",
                        momentum = 0.9,
                        learning_rate = 1e-3,
                        epochs = 2,
                        batch_size = 4,
                        classes = ('plane','car','bird','cat','deer','dog','frog','horse','ship','truck'),
                        use_gpu = True,
                        debug_train = 0,
                        debug_test = 1
                    )
      
      configs_for_all_convo_layers = dls.parse_config_string_for_convo_layers()
      convo_layers = dls.build_convo_layers2( configs_for_all_convo_layers )
      fc_layers = dls.build_fc_layers()
      model = dls.Net(convo_layers, fc_layers)
      dls.show_network_summary(model)
      dls.load_cifar_10_dataset()
      dls.run_code_for_training(model)
      dls.run_code_for_testing(model)

      
          


            

Raw data

            {
    "_id": null,
    "home_page": "https://engineering.purdue.edu/kak/distDLS/DLStudio-2.4.9.html",
    "name": "DLStudio",
    "maintainer": "Avinash Kak",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "kak@purdue.edu",
    "keywords": "PyTorch programming",
    "author": "Avinash Kak",
    "author_email": "kak@purdue.edu",
    "download_url": "https://files.pythonhosted.org/packages/f5/91/820b331dc6b23e49ecee4cf19c327ed357bde3c7717fbf1f41690d728e87/DLStudio-2.4.9.tar.gz",
    "platform": "All platforms",
    "description": "\n\nConsult the module API page at\n\n      https://engineering.purdue.edu/kak/distDLS/DLStudio-2.4.9.html\n\nfor all information related to this module, including the information about\nthe latest changes to the code.  \n\n::\n\n      convo_layers_config = \"1x[128,3,3,1]-MaxPool(2) 1x[16,5,5,1]-MaxPool(2)\"\n      fc_layers_config = [-1,1024,10]\n      \n      dls = DLStudio(\n                        dataroot = \"/home/kak/ImageDatasets/CIFAR-10/\",\n                        image_size = [32,32],\n                        convo_layers_config = convo_layers_config,\n                        fc_layers_config = fc_layers_config,\n                        path_saved_model = \"./saved_model\",\n                        momentum = 0.9,\n                        learning_rate = 1e-3,\n                        epochs = 2,\n                        batch_size = 4,\n                        classes = ('plane','car','bird','cat','deer','dog','frog','horse','ship','truck'),\n                        use_gpu = True,\n                        debug_train = 0,\n                        debug_test = 1\n                    )\n      \n      configs_for_all_convo_layers = dls.parse_config_string_for_convo_layers()\n      convo_layers = dls.build_convo_layers2( configs_for_all_convo_layers )\n      fc_layers = dls.build_fc_layers()\n      model = dls.Net(convo_layers, fc_layers)\n      dls.show_network_summary(model)\n      dls.load_cifar_10_dataset()\n      dls.run_code_for_training(model)\n      dls.run_code_for_testing(model)\n\n      \n          \n\n",
    "bugtrack_url": null,
    "license": "Python Software Foundation License",
    "summary": "A PyTorch based software platform for teaching the Deep Learning class at Purdue University",
    "version": "2.4.9",
    "project_urls": {
        "Download": "https://engineering.purdue.edu/kak/distDLS/DLStudio-2.4.9.tar.gz",
        "Homepage": "https://engineering.purdue.edu/kak/distDLS/DLStudio-2.4.9.html"
    },
    "split_keywords": [
        "pytorch",
        "programming"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f591820b331dc6b23e49ecee4cf19c327ed357bde3c7717fbf1f41690d728e87",
                "md5": "b74ce37fd80206e4b360d4cd6994bfb5",
                "sha256": "05a9370702a3884550fcfdd4caf01b35e37d0d2e30dc1edb702c736c304d936e"
            },
            "downloads": -1,
            "filename": "DLStudio-2.4.9.tar.gz",
            "has_sig": false,
            "md5_digest": "b74ce37fd80206e4b360d4cd6994bfb5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 333466,
            "upload_time": "2024-05-01T17:12:04",
            "upload_time_iso_8601": "2024-05-01T17:12:04.694743Z",
            "url": "https://files.pythonhosted.org/packages/f5/91/820b331dc6b23e49ecee4cf19c327ed357bde3c7717fbf1f41690d728e87/DLStudio-2.4.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-01 17:12:04",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "dlstudio"
}
        
Elapsed time: 0.24964s