Skip to content

Commit

Permalink
deploy: 1d0e7e5
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanTodoran committed Oct 5, 2023
1 parent 5687ae1 commit 7148440
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion _sources/about_this_book/about_this_book.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The course is intended to introduce Machine Learning in Geosciences, the basics

Some chapters will include code sections which students should attempt to write on their own first before viewing the solution. The student version of this book automatically clears sections marked by the instructor as student response, and can be accessed via the link below.

[![Student Version](../img/student_version_badge.svg)](https://geo-smart.github.io/mlgeo/)
[![Student Version](../img/student_version_badge.svg)](https://geo-smart.github.io/mlgeo-book/)

# Learning objectives

Expand Down
2 changes: 1 addition & 1 deletion about_this_book/about_this_book.html
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ <h1>Overview<a class="headerlink" href="#overview" title="Permalink to this head
<section class="tex2jax_ignore mathjax_ignore" id="student-version">
<h1>Student Version<a class="headerlink" href="#student-version" title="Permalink to this headline">#</a></h1>
<p>Some chapters will include code sections which students should attempt to write on their own first before viewing the solution. The student version of this book automatically clears sections marked by the instructor as student response, and can be accessed via the link below.</p>
<p><a class="reference external" href="https://geo-smart.github.io/mlgeo/"><img alt="Student Version" src="../_images/student_version_badge.svg" /></a></p>
<p><a class="reference external" href="https://geo-smart.github.io/mlgeo-book/"><img alt="Student Version" src="../_images/student_version_badge.svg" /></a></p>
</section>
<section class="tex2jax_ignore mathjax_ignore" id="learning-objectives">
<h1>Learning objectives<a class="headerlink" href="#learning-objectives" title="Permalink to this headline">#</a></h1>
Expand Down
19 changes: 12 additions & 7 deletions reports/3.6_randomForest_regression.log
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,21 @@ Traceback (most recent call last):
raise CellExecutionError.from_cell_and_msg(cell, exec_reply_content)
nbclient.exceptions.CellExecutionError: An error occurred while executing the following cell:
------------------
import wget
wget.download("https://docs.google.com/uc?export=download&id=1pko9oRmCllAxipZoa3aoztGZfPAD2iwj")
# Pandas is used for data manipulation
import pandas as pd
# Read in data and display first 5 rows
features = pd.read_csv('temps.csv')
features.head(5)
------------------

---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Input In [1], in <cell line: 1>()
----> 1 import wget
 2 wget.download("https://docs.google.com/uc?export=download&id=1pko9oRmCllAxipZoa3aoztGZfPAD2iwj")
Input In [2], in <cell line: 2>()
 1 # Pandas is used for data manipulation
----> 2 import pandas as pd
 3 # Read in data and display first 5 rows
 4 features = pd.read_csv('temps.csv')

ModuleNotFoundError: No module named 'wget'
ModuleNotFoundError: No module named 'wget'
ModuleNotFoundError: No module named 'pandas'
ModuleNotFoundError: No module named 'pandas'

0 comments on commit 7148440

Please sign in to comment.