Skip to content
Snippets Groups Projects
Commit 5f56eeff authored by Adam Fekete's avatar Adam Fekete
Browse files

new file structure

parent e564a18b
No related branches found
No related tags found
No related merge requests found
File moved
File moved
This diff is collapsed.
File moved
{
"authors": [
"Angelo, Ziletti",
"Andreas, Leitherer",
"Luca, M. Ghiringhelli"
],
"email": "user@domain.com",
"title": "(Convolutional) Neural network tutorial ",
"description": "In this tutorial, we briefly introduce the main ideas behind convolutional neural networks, build a neural network model with Keras, and explain the classification decision process using attentive response maps.",
"url": "https://gitlab.mpcdf.mpg.de/nomad-lab/analytics-convolutional-nn",
"link": "https://analytics-toolkit.nomad-coe.eu/hub/user-redirect/notebooks/tutorials/convolutional_nn.ipynb",
"created": "",
"updated": "",
"flags":{
"isPublic": false,
"featured": false,
"top_of_list": false
},
"labels": {
"application_keyword": [
"keyword1",
"keyword2"
],
"application_section": [
"Materials property prediction"
],
"application_system": [
"System"
],
"category": [
"Tutorial"
],
"data_analytics_method": [
"Clustering"
],
"platform": [
"jupyter"
]
}
}
\ No newline at end of file
setup.py 0 → 100644
import json
from setuptools import setup, find_packages
with open('metainfo.json') as file:
metainfo = json.load(file)
setup(
name='convolutional_nn',
version='1.0',
author=', '.join(metainfo['authors']),
author_email=metainfo['email'],
url=metainfo['url'],
description=metainfo['title'],
long_description=metainfo['description'],
packages=find_packages(),
install_requires=['numpy', 'scipy', 'matplotlib'],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment