mirror of
https://github.com/gsi-upm/sitc
synced 2024-11-22 14:32:28 +00:00
Python2 compatibility + sparql server
This commit is contained in:
parent
32278338bf
commit
5c5db4fe7a
@ -4,3 +4,4 @@ Exercises for Intelligent Systems Course
|
|||||||
* ML-1: introduction to machine learning with scikit-learn
|
* ML-1: introduction to machine learning with scikit-learn
|
||||||
* ML-2: introduction to machine learning with pandas and scikit-learn
|
* ML-2: introduction to machine learning with pandas and scikit-learn
|
||||||
* NLP: introduction to NLP
|
* NLP: introduction to NLP
|
||||||
|
* LOD: Linked Open Data, exercises and example code
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
from future.standard_library import install_aliases
|
||||||
|
install_aliases()
|
||||||
|
|
||||||
from urllib import request, parse
|
from urllib import request, parse
|
||||||
from rdflib import Graph, term
|
from rdflib import Graph, term
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
future
|
||||||
rdflib
|
rdflib
|
||||||
rdflib-jsonld
|
rdflib-jsonld
|
||||||
lxml
|
lxml
|
||||||
|
Loading…
Reference in New Issue
Block a user