We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6edad8e commit 0ff8c61Copy full SHA for 0ff8c61
2 files changed
Dockerfile
@@ -12,7 +12,7 @@ RUN apt-get update && \
12
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
13
locale-gen && \
14
wget -O - https://bootstrap.pypa.io/get-pip.py | python3 && \
15
- cd ml-core && \
+ cd ml_core && \
16
pip3 install --no-cache-dir -r requirements.txt && \
17
apt-get remove -y python3-dev libxml2-dev gcc g++ wget && \
18
apt-get remove -y .*-doc .*-man >/dev/null && \
sourced/ml/core/__init__.py
@@ -0,0 +1,9 @@
1
+"""MLonCode research playground."""
2
+try:
3
+ import modelforge.configuration
4
+
5
+ modelforge.configuration.refresh()
6
+except ImportError:
7
+ pass
8
9
+__version__ = "0.8.3"
0 commit comments